*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f7;
  color: #111827;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section,
.section-alt,
.section-accent {
  padding: 3rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section-accent {
  background-color: #111827;
  color: #f9fafb;
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #0f172a;
  border-bottom: 1px solid #0b1120;
  color: #f9fafb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: #0b1120;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* Desktop nav */

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.site-nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  color: #e5e7eb;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav a:hover {
  color: #ffffff;
}

.site-nav a.active:not(.btn) {
  color: #ffffff;
  border-color: #ffffff;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #0f172a;     /* deep navy */
  color: #fbbf24;                /* gold text */
  border: 2px solid #fbbf24;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 0 0 rgba(251, 191, 36, 0.0);
  transition: 0.25s ease;
}

.btn-primary:hover {
  background-color: #1e293b;
  color: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: #d1d5db;
  background-color: transparent;
  color: #111827;
}

.btn-ghost:hover {
  background-color: #f3f4f6;
}

.btn-outline {
  border-color: #d1d5db;
  background-color: transparent;
  color: #111827;
  padding-inline: 1.1rem;
}

.btn-outline:hover {
  background-color: #f3f4f6;
}

.btn-light {
  background-color: #fbbf24;
  color: #0f172a;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-light:hover {
  background-color: #f1c232;
  color: #0b1120;
}

/* Hero */

.hero {
  padding: 3.2rem 0 2.8rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.lead {
  font-size: 0.98rem;
  max-width: 36rem;
  color: #4b5563;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-badges {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.badge {
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.badge-main {
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-sub {
  font-size: 0.78rem;
  color: #6b7280;
}

/* Hero media */

.hero-media {
  display: grid;
  gap: 0.9rem;
}

.hero-main-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 220px;
  background-image: url("https://images.pexels.com/photos/6476584/pexels-photo-6476584.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
}

.hero-image-tag {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(17, 24, 39, 0.88);
  font-size: 0.72rem;
  color: #f9fafb;
}

.hero-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-stat-card,
.hero-list-card {
  border-radius: 0.9rem;
  padding: 0.9rem 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.stat-value span {
  font-size: 0.86rem;
  color: #9ca3af;
}

.stat-sub {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.2rem;
}

.hero-list-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.hero-list-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.8rem;
  color: #4b5563;
}

/* Section headers */

.section-header {
  text-align: left;
  margin-bottom: 1.8rem;
}

.section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-header p {
  font-size: 0.95rem;
  color: #4b5563;
  max-width: 32rem;
}

/* Cards */

.cards-grid {
  display: grid;
  gap: 1.2rem;
}

.cards-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 1.4rem 1.3rem;
  border-radius: 0.9rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.card-link {
  font-size: 0.8rem;
  color: #111827;
  text-decoration: underline;
}

.card-image {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 160px;
  margin-bottom: 0.8rem;
  background-size: cover;
  background-position: center;
  background-color: #e5e7eb;
}

.card-image-extensions {
  background-image: url("https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.card-image-refurbishments {
  background-image: url("https://images.pexels.com/photos/6476588/pexels-photo-6476588.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.card-image-kitchens {
  background-image: url("https://images.pexels.com/photos/3735481/pexels-photo-3735481.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* Features */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.feature {
  padding: 1.2rem 1.2rem;
  border-radius: 0.9rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.feature h3 {
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}

.feature p {
  font-size: 0.85rem;
  color: #4b5563;
}

/* Page hero */

.page-hero {
  padding: 3rem 0 2.2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.page-hero h1 {
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

/* Services page */

.service-grid {
  display: grid;
  gap: 1.2rem;
}

.service-block {
  padding: 1.4rem 1.3rem;
  border-radius: 0.9rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.service-block h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-block p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.service-list {
  font-size: 0.86rem;
  color: #111827;
  list-style: disc;
  padding-left: 1.1rem;
}

/* Projects */

.project-grid {
  display: grid;
  gap: 1.3rem;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.2rem;
  border-radius: 0.9rem;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.project-image {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.project-image-1 {
  background-image: url("https://images.pexels.com/photos/1571453/pexels-photo-1571453.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.project-image-2 {
  background-image: url("https://images.pexels.com/photos/2383854/pexels-photo-2383854.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.project-image-3 {
  background-image: url("https://images.pexels.com/photos/3637729/pexels-photo-3637729.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.project-body {
  padding: 1.2rem 1.2rem 1.2rem 0;
}

.project-body h2 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.project-body p {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.project-body ul {
  list-style: disc;
  padding-left: 1.1rem;
  font-size: 0.84rem;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.process-list {
  font-size: 0.86rem;
  color: #111827;
  display: grid;
  gap: 0.6rem;
  padding-left: 1rem;
}

.process-list li::marker {
  color: #111827;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.contact-panel {
  padding: 1.6rem 1.4rem;
  border-radius: 0.9rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}

.contact-panel-alt {
  background-color: #f9fafb;
}

.contact-form {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #111827;
  font-size: 0.85rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #111827;
}

.form-helper {
  font-size: 0.76rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.contact-list {
  font-size: 0.86rem;
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.map-wrapper {
  margin-top: 1.2rem;
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.map-wrapper iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* CTA */

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: center;
}

.cta-grid p {
  font-size: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-phone {
  font-size: 0.85rem;
  text-decoration: underline;
}

/* Footer */

.site-footer {
  padding-top: 2.3rem;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.7fr));
  gap: 1.4rem;
  padding-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 0.6rem;
}

.footer-text {
  font-size: 0.84rem;
  color: #6b7280;
  max-width: 18rem;
}

.footer-links {
  font-size: 0.84rem;
  display: grid;
  gap: 0.3rem;
}

.footer-links a {
  color: #4b5563;
}

.footer-links a:hover {
  color: #111827;
}

.site-footer h4 {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 0.8rem 0 1rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #6b7280;
}

/* WhatsApp floating */

.whatsapp-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background-color: #25d366;
  color: #111827;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

/* Hamburger nav (mobile) */

.nav-toggle {
  display: none;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background-color: #f9fafb;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-open .site-nav {
  max-height: 260px;
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
  }

  .project-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-body {
    padding: 1.1rem 1.1rem 1.2rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-block: 0.7rem;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background-color: #0f172a;
    border-bottom: 1px solid #0b1120;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.2s ease;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.65rem 1.1rem 0.9rem;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-secondary {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab {
    width: 2.8rem;
    height: 2.8rem;
    justify-content: center;
  }
}

/* Sticky Get a Quote bar (mobile) */

.sticky-quote-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background-color: #0f172a;
  border-top: 1px solid #0b1120;
  padding: 0.6rem 1rem;
  display: none;
}

.sticky-quote-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.sticky-quote-btn {
  flex-shrink: 0;
}

/* show sticky bar on small screens */
@media (max-width: 720px) {
  body {
    padding-bottom: 3.2rem;
  }
  .sticky-quote-bar {
    display: block;
  }
}
