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

  :root {
    --green-deep: #3d2e27;
    --green-mid: #6b5448;
    --green-light: #8c7060;
    --green-pale: #e8e0d5;
    --stone: #ddd8cf;
    --stone-dark: #9e9488;
    --cream: #f5f2ec;
    --earth: #5a4438;
    --white: #ffffff;
    --text-dark: #1a0f0a;
    --text-mid: #2e2018;
    --text-muted: #5a4e46;
    --accent: #7a6254;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem;
    background: rgba(61,46,39,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo-leaf {
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 50% 0 50% 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    font-size: 0.8rem !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #9a8070 !important; color: var(--white) !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: url('../images/img1.png') center center / cover no-repeat;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background: linear-gradient(
      to right,
      rgba(15,8,4,0.82) 0%,
      rgba(15,8,4,0.65) 50%,
      rgba(15,8,4,0.30) 100%
    );
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 8rem 4rem 5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(122,182,72,0.15);
    border: 1px solid rgba(122,182,72,0.3);
    color: var(--accent);
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 2px;
    margin-bottom: 1.5rem;
  }
  .hero-tag-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  h1 em { color: #d4b896; font-style: normal; }
  .hero-sub {
    font-size: 1.05rem; line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent); color: var(--white);
    padding: 0.85rem 2rem; border-radius: 2px;
    font-weight: 500; font-size: 0.9rem;
    text-decoration: none; letter-spacing: 0.03em;
    transition: all 0.2s; border: none; cursor: pointer;
    text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .btn-primary:hover { background: #9a8070; transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--white);
    padding: 0.85rem 2rem; border-radius: 2px;
    font-weight: 400; font-size: 0.9rem;
    text-decoration: none; letter-spacing: 0.03em;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.2s; cursor: pointer;
    text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(20,12,8,0.65);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px; overflow: hidden;
    margin-top: 3rem;
  }
  .stat {
    background: transparent;
    padding: 1.5rem 1.25rem; text-align: center;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: #e8d8c8; display: block;
  }
  .stat-label {
    font-size: 0.75rem; color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-top: 4px; display: block;
  }

  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
  }
  .hero-card-stack { position: relative; width: 100%; max-width: 420px; }
  .hero-card {
    background: rgba(20,12,8,0.72);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px; padding: 2rem;
    backdrop-filter: blur(12px);
  }
  .hero-card-back {
    position: absolute; top: -20px; right: -20px;
    width: 100%; height: 100%;
    background: rgba(158,148,136,0.15);
    border: 1px solid rgba(158,148,136,0.25);
    border-radius: 8px; z-index: -1;
  }
  .service-pill-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
  .service-pill {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.95);
    padding: 0.4rem 0.9rem;
    border-radius: 100px; font-size: 0.78rem;
    display: flex; align-items: center; gap: 6px;
  }
  .pill-dot { display: none; }
  .hero-card-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--accent); margin-bottom: 0.75rem;
  }
  .hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white); font-size: 1.3rem; line-height: 1.3;
  }

  /* ── SECTIONS COMMON ── */
  section { padding: 6rem 4rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: #5a4438; font-weight: 500; margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: ''; display: block;
    width: 24px; height: 1px; background: #5a4438;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600; line-height: 1.15;
    color: #1a0f0a; margin-bottom: 1.25rem;
  }
  .section-sub {
    font-size: 1rem; line-height: 1.75; color: var(--text-muted);
    max-width: 540px; font-weight: 300;
  }

  /* ── ABOUT ── */
  #about { background: #faf8f5; }
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }
  .about-left { padding-top: 0.5rem; }
  .about-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--stone);
    border: 1px solid var(--stone);
    border-radius: 6px; overflow: hidden;
    margin-top: 2.5rem;
  }
  .about-stat {
    background: var(--white);
    padding: 1.75rem 1.5rem;
  }
  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 700;
    color: var(--green-deep); display: block; line-height: 1;
    margin-bottom: 0.4rem;
  }
  .about-stat-label {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted);
  }
  .about-badge-row {
    display: flex; align-items: center; gap: 10px;
    margin-top: 2rem; padding: 1rem 1.25rem;
    background: var(--green-deep);
    border-radius: 4px;
  }
  .about-badge-check {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--accent); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1rem; font-weight: 500;
  }
  .about-badge-row-text { color: var(--white); font-size: 0.82rem; line-height: 1.5; }
  .about-badge-row-text strong { display: block; color: #d4c4b8; font-size: 0.9rem; }
  .about-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    margin-top: 2rem;
  }
  .about-feature {
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 4px; border-left: 3px solid var(--accent);
  }
  .about-feature-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
  .about-feature-text strong { display: block; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 3px; }
  @media (max-width: 900px) {
    .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  }

  /* ── SERVICES ── */
  #services { background: var(--cream); }
  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
    background: var(--stone-dark); border-radius: 6px; overflow: hidden;
  }
  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: background 0.25s;
    cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--accent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover { background: var(--cream); }
  .service-num { display: none; }
  .service-icon-wrap { display: none; }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: #1a0f0a; margin-bottom: 0.75rem;
  }
  .service-desc {
    font-size: 0.88rem; line-height: 1.7;
    color: #4a3d36; font-weight: 400;
  }
  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.25rem; }
  .service-tag {
    font-size: 0.72rem; padding: 3px 10px;
    background: var(--stone); color: var(--text-mid);
    border-radius: 100px; font-weight: 500;
  }

  /* ── GALLERY ── */
  #gallery { background: #1a1410; padding: 6rem 4rem; }
  #gallery .section-title { color: var(--white); }
  #gallery .section-label { color: #d4c4b8; }
  #gallery .section-label::before { background: #d4c4b8; }
  #gallery .section-sub { color: rgba(255,255,255,0.45); }

  .gallery-masonry {
    columns: 3;
    column-gap: 14px;
    margin-top: 3rem;
  }
  .gallery-tile {
    break-inside: avoid;
    margin-bottom: 14px;
    cursor: pointer;
  }
  .gallery-tile-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
  }
  .gallery-tile-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .gallery-tile:hover .gallery-tile-img-wrap img { transform: scale(1.05); }

  /* subtle dark tint always present, deepens on hover */
  .gallery-tile-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(15,8,4,0.18);
    transition: background 0.4s;
    pointer-events: none;
  }
  .gallery-tile:hover .gallery-tile-img-wrap::after {
    background: rgba(15,8,4,0.08);
  }

  /* caption below the image, always visible */
  .gallery-tile-caption {
    padding: 0.65rem 0.1rem 0;
    display: flex; align-items: baseline; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
  }
  .gallery-tile-title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .gallery-tile-sub {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    font-weight: 300;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .gallery-masonry { columns: 2; }
    #gallery { padding: 4rem 1.5rem; }
  }
  @media (max-width: 560px) {
    .gallery-masonry { columns: 1; }
  }

  /* ── CLIENTS ── */
  #clients { background: var(--green-deep); }
  #clients .section-label { color: #d4c4b8; }
  #clients .section-label::before { background: #d4c4b8; }
  #clients .section-title { color: var(--white); }
  #clients .section-sub { color: rgba(255,255,255,0.55); margin-bottom: 3rem; }
  .clients-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    margin-top: 3rem;
  }
  .client-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; padding: 2.5rem 1.5rem;
    text-align: center;
    transition: background 0.25s, border-color 0.25s;
  }
  .client-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(212,196,184,0.4);
  }
  .client-logo-img-wrap {
    height: 70px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .client-logo-img {
    max-height: 54px;
    max-width: 160px;
    object-fit: contain;
    transition: opacity 0.2s;
    opacity: 0.9;
    image-rendering: -webkit-optimize-contrast;
  }
  .client-card:hover .client-logo-img { opacity: 1; }
  .client-name {
    font-size: 0.95rem; font-weight: 500;
    color: var(--white); margin-bottom: 0.4rem;
    line-height: 1.3;
  }
  .client-type {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  }

  /* ── CONTACT ── */
  #location { background: var(--cream); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start;
    margin-top: 3rem;
  }
  .contact-left-text {
    font-size: 1rem; line-height: 1.8; color: var(--text-muted);
    font-weight: 300; margin-bottom: 2rem;
  }
  .service-area-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.5rem; }
  .service-area-label {
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-muted); margin-bottom: 0.6rem;
  }
  .area-chip {
    font-size: 0.72rem; padding: 4px 12px;
    background: var(--white); border: 1px solid var(--stone);
    color: var(--text-mid); border-radius: 100px;
  }
  .map-card {
    display: block;
    position: relative;
    margin-top: 2rem;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--stone);
    text-decoration: none;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .map-card:hover {
    transform: translateY(-2px);
    border-color: rgba(122,98,84,0.35);
    box-shadow: 0 12px 24px rgba(61,46,39,0.12);
  }
  .map-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 36% 52%;
  }
  .map-info-card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(221,216,207,0.85);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(26,15,10,0.14);
    backdrop-filter: blur(8px);
  }
  .map-pin {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--white);
  }
  .map-pin svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .map-business {
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .map-address {
    margin-top: 0.2rem;
    color: var(--text-muted);
    font-size: 0.76rem;
  }
  .map-directions {
    color: var(--text-muted);
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: 6px; padding: 2.5rem;
  }
  .contact-form-wrap .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .contact-form-wrap .form-group { margin-bottom: 1.25rem; }
  .contact-form-wrap label {
    display: block; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-muted); margin-bottom: 0.5rem;
  }
  .contact-form-wrap input,
  .contact-form-wrap select,
  .contact-form-wrap textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--stone);
    border-radius: 3px; padding: 0.75rem 1rem;
    color: var(--text-dark); font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none; transition: border 0.2s;
    appearance: none;
  }
  .contact-form-wrap input:focus,
  .contact-form-wrap select:focus,
  .contact-form-wrap textarea:focus {
    border-color: var(--accent);
    background: var(--white);
  }
  .contact-form-wrap input::placeholder,
  .contact-form-wrap textarea::placeholder { color: var(--stone-dark); }
  .contact-form-wrap select option { background: var(--white); color: var(--text-dark); }
  .contact-form-wrap textarea { resize: vertical; min-height: 110px; }
  .contact-submit {
    width: 100%; padding: 0.9rem;
    background: var(--accent); color: var(--white);
    border: none; border-radius: 3px;
    font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer; transition: background 0.2s;
  }
  .contact-submit:hover { background: #9a8070; }
  .contact-form-note {
    font-size: 0.72rem; color: var(--text-muted);
    text-align: center; margin-top: 1rem;
  }
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form-wrap .form-row { grid-template-columns: 1fr; }
  }

  /* ── CONTACT ── */
  #contact { background: var(--green-deep); }
  #contact .section-title { color: var(--white); }
  #contact .section-label { color: #d4c4b8; }
  #contact .section-label::before { background: #d4c4b8; }
  #contact .section-sub { color: rgba(255,255,255,0.55); }
  .contact-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
    margin-top: 3rem;
  }
  .contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 2.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.25rem; }
  label {
    display: block; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5); margin-bottom: 0.5rem;
  }
  input, select, textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px; padding: 0.75rem 1rem;
    color: var(--white); font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none; transition: border 0.2s;
    appearance: none;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.09);
  }
  input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
  select option { background: var(--green-deep); color: var(--white); }
  textarea { resize: vertical; min-height: 100px; }
  .contact-perks { display: flex; flex-direction: column; gap: 2rem; }
  .perk {
    display: flex; gap: 1.25rem; align-items: flex-start;
  }
  .perk-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: rgba(122,98,84,0.2);
    border: 1px solid rgba(122,98,84,0.3);
    border-radius: 4px; display: flex; align-items: center;
    justify-content: center; font-size: 1.25rem;
  }
  .perk-title { font-weight: 500; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
  .perk-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.6; font-weight: 300; }
  .form-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 1rem; text-align: center; }

  /* ── FOOTER ── */
  footer {
    background: #221a16;
    padding: 2.5rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(255,255,255,0.5); font-size: 1rem;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--accent); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.7s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.22s; }
  .delay-3 { animation-delay: 0.34s; }
  .delay-4 { animation-delay: 0.46s; }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 7rem 1.5rem 3rem; }
    .hero-visual { display: none; }
    .about-grid, .location-grid, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: auto; }
    footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }
