
    :root{
      --bg: #faf7f2;
      --panel: #ffffff;
      --text: #1f1f1f;
      --muted: #6c6c6c;
      --line: rgba(0,0,0,.10);
      --shadow: 0 18px 45px rgba(0,0,0,.08);
      --radius: 18px;

      --container: 1180px;

      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      --serif: ui-serif, "Iowan Old Style","Palatino Linotype", Palatino, Georgia, serif;

      --cta: #111;
      --ctaText: #fff;
      --chip: rgba(0,0,0,.06);
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: var(--font);
      color: var(--text);
      background: radial-gradient(1200px 700px at 20% -10%, rgba(0,0,0,.05), transparent 55%),
                  radial-gradient(900px 600px at 90% 10%, rgba(0,0,0,.04), transparent 60%),
                  var(--bg);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }

    .container{
      width: min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }

    .sr-only{
      position:absolute!important;
      height:1px; width:1px;
      overflow:hidden;
      clip:rect(1px,1px,1px,1px);
      white-space:nowrap;
    }

    /* ---------- Header ---------- */
    .topbar{
      position:sticky;
      top:0;
      z-index: 50;
      background: rgba(250,247,242,.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 16px 0;
      gap: 16px;
    }

    .brand{
      display:flex;
      align-items:baseline;
      gap: 10px;
      letter-spacing: .02em;
    }
    .brand .logo{
      font-family: var(--serif);
      font-weight: 600;
      font-size: 20px;
    }
    .brand .tag{
      font-size: 12px;
      color: var(--muted);
    }

    .navlinks{
      display:flex;
      align-items:center;
      gap: 18px;
    }

    .navlinks > a,
    .dd > summary{
      font-size: 13px;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 10px 10px;
      border-radius: 12px;
      color: rgba(0,0,0,.82);
      cursor:pointer;
      user-select:none;
      outline:none;
    }

    .navlinks > a:hover,
    .dd > summary:hover{
      background: rgba(0,0,0,.045);
    }

    /* dropdown (Collection / Contact) */
    .dd{
      position:relative;
    }
    .dd > summary{
      list-style:none;
      display:flex;
      align-items:center;
      gap: 8px;
    }
    .dd > summary::-webkit-details-marker{ display:none; }
    .caret{
      width: 10px; height: 10px;
      opacity: .75;
      transform: translateY(1px);
    }

    .ddpanel{
      position:absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 360px;
      max-width: 520px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 16px;
      box-shadow: var(--shadow);
      padding: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .ddpanel a{
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid transparent;
      display:flex;
      flex-direction:column;
      gap: 3px;
    }
    .ddpanel a:hover{
      background: rgba(0,0,0,.03);
      border-color: rgba(0,0,0,.06);
    }
    .ddpanel .t{
      font-weight: 600;
      font-size: 14px;
    }
    .ddpanel .d{
      font-size: 12px;
      color: var(--muted);
      line-height: 1.35;
    }

    .actions{
      display:flex;
      align-items:center;
      gap: 10px;
    }

    .pill{
      border: 1px solid var(--line);
      background: rgba(255,255,255,.55);
      border-radius: 999px;
      padding: 8px 10px;
      font-size: 12px;
      color: rgba(0,0,0,.75);
      display:flex;
      align-items:center;
      gap: 8px;
    }

    .iconbtn{
      width: 38px; height: 38px;
      display:grid; place-items:center;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.55);
    }
    .iconbtn:hover{ background: rgba(255,255,255,.85); }
    .icon{ width: 18px; height: 18px; opacity: .78; }

    /* Mobile nav */
    .burger{ display:none; }
    #navToggle{ display:none; }

    @media (max-width: 920px){
      .nav{ padding: 14px 0; }
      .navlinks{ display:none; }
      .burger{ display:grid; }
      .pill{ display:none; }
      #navToggle:checked ~ .mobilePanel{ display:block; }
    }

    .mobilePanel{
      display:none;
      border-top: 1px solid var(--line);
      padding: 14px 0 18px;
    }
    .mobilePanel a{
      display:block;
      padding: 12px 12px;
      border-radius: 14px;
      margin: 4px 0;
      background: rgba(255,255,255,.55);
      border: 1px solid var(--line);
      font-size: 14px;
    }

    /* ---------- Hero (2-slide, CSS snap) ---------- */
    .hero{
      padding: 22px 0 10px;
    }

    .slider{
      position:relative;
      border-radius: 26px;
      overflow:hidden;
      border: 1px solid var(--line);
      background: #eee;
      box-shadow: var(--shadow);
    }

    .slides{
      display:flex;
      overflow:auto;
      scroll-snap-type: x mandatory;
      scroll-behavior:smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .slides::-webkit-scrollbar{ display:none; }

    .slide{
      min-width: 100%;
      height: clamp(420px, 54vh, 620px);
      position:relative;
      scroll-snap-align: start;
      display:grid;
      align-items:end;
    }

    /* Placeholder "photo" backgrounds */
    .bg1{
      background:
        radial-gradient(1200px 700px at 30% 20%, rgba(255,255,255,.45), transparent 55%),
        linear-gradient(115deg, rgba(0,0,0,.70), rgba(0,0,0,.15)),
        linear-gradient(135deg, #b49a83, #7c695c 50%, #b8a79a);
    }
    .bg2{
      background:
        radial-gradient(1100px 700px at 65% 20%, rgba(255,255,255,.42), transparent 55%),
        linear-gradient(115deg, rgba(0,0,0,.70), rgba(0,0,0,.18)),
        linear-gradient(135deg, #b07a5a, #7b4e3b 55%, #c7a58f);
    }

    .overlay{
      padding: 34px;
      color: #fff;
      max-width: 720px;
    }
    .kicker{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .9;
      margin-bottom: 10px;
    }
    .dot{
      width: 6px; height: 6px;
      border-radius: 99px;
      background: rgba(255,255,255,.85);
      opacity: .9;
    }
    .hero h1{
      margin:0 0 10px;
      font-family: var(--serif);
      font-weight: 600;
      letter-spacing: .01em;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 1.05;
    }
    .hero p{
      margin: 0 0 18px;
      max-width: 58ch;
      color: rgba(255,255,255,.9);
      line-height: 1.55;
      font-size: 14.5px;
    }

    .ctaRow{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      align-items:center;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.30);
      background: rgba(255,255,255,.12);
      color: #fff;
      font-size: 13px;
      letter-spacing: .02em;
      backdrop-filter: blur(10px);
    }
    .btn.primary{
      background: #fff;
      color: #111;
      border-color: rgba(255,255,255,.55);
    }
    .btn:hover{ filter: brightness(1.02); }

    .sliderNav{
      position:absolute;
      inset: auto 16px 16px auto;
      display:flex;
      gap: 8px;
      z-index: 3;
    }
    .chip{
      width: 44px; height: 36px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(0,0,0,.25);
      display:grid; place-items:center;
      backdrop-filter: blur(10px);
    }
    .chip:hover{ background: rgba(0,0,0,.32); }
    .chip svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.9); }

    @media (max-width: 680px){
      .overlay{ padding: 24px; }
      .sliderNav{ inset: auto 12px 12px auto; }
    }

    /* ---------- Sections ---------- */
    .section{
      padding: 46px 0;
    }

    .sectionHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 18px;
      margin-bottom: 18px;
    }
    .sectionHead .eyebrow{
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(0,0,0,.62);
    }
    .sectionHead h2{
      margin: 6px 0 0;
      font-family: var(--serif);
      font-weight: 600;
      letter-spacing: .01em;
      font-size: 30px;
    }
    .sectionHead .link{
      font-size: 13px;
      color: rgba(0,0,0,.70);
      border-bottom: 1px solid rgba(0,0,0,.25);
      padding-bottom: 2px;
      white-space:nowrap;
    }

    /* ---------- Product carousel ---------- */
    .rail{
      display:flex;
      gap: 14px;
      overflow:auto;
      scroll-snap-type: x mandatory;
      padding: 6px 4px 14px;
      scrollbar-width: none;
    }
    .rail::-webkit-scrollbar{ display:none; }

    .card{
      scroll-snap-align:start;
      min-width: 240px;
      max-width: 240px;
      background: rgba(255,255,255,.75);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: 0 10px 28px rgba(0,0,0,.06);
    }

    .thumb{
      height: 170px;
      background:
        radial-gradient(400px 240px at 30% 30%, rgba(255,255,255,.7), transparent 60%),
        linear-gradient(135deg, #cbbba8, #9a8c7d);
      border-bottom: 1px solid var(--line);
    }
    .card .body{
      padding: 12px 12px 14px;
    }
    .name{
      font-weight: 650;
      font-size: 14px;
      margin-bottom: 4px;
    }
    .price{
      font-size: 12px;
      color: rgba(0,0,0,.65);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap: 8px;
    }
    .badge{
      font-size: 11px;
      padding: 5px 9px;
      border-radius: 999px;
      background: var(--chip);
      border: 1px solid rgba(0,0,0,.06);
      color: rgba(0,0,0,.72);
      white-space:nowrap;
    }

    /* ---------- Why our limewash (3-up) ---------- */
    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 14px;
    }
    .feature{
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px 16px 18px;
      box-shadow: 0 10px 26px rgba(0,0,0,.05);
      min-height: 160px;
    }
    .feature h3{
      margin: 0 0 8px;
      font-size: 14px;
      letter-spacing:.10em;
      text-transform: uppercase;
    }
    .feature p{
      margin:0;
      font-size: 13.5px;
      color: rgba(0,0,0,.68);
      line-height: 1.55;
    }

    @media (max-width: 900px){
      .grid3{ grid-template-columns: 1fr; }
    }

    /* ---------- Category chips ---------- */
    .chips{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin-top: 14px;
    }
    .chips a{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.70);
      border: 1px solid var(--line);
      font-size: 13px;
      color: rgba(0,0,0,.76);
    }
    .swatch{
      width: 14px; height: 14px;
      border-radius: 99px;
      border: 1px solid rgba(0,0,0,.14);
      background: linear-gradient(135deg, #cdb69f, #a58c76);
    }

    /* ---------- Split image + copy block ---------- */
    .split{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
      align-items:stretch;
      margin-top: 14px;
    }
    .photo{
      border-radius: 22px;
      border: 1px solid var(--line);
      overflow:hidden;
      background:
        radial-gradient(900px 520px at 30% 20%, rgba(255,255,255,.55), transparent 55%),
        linear-gradient(135deg, #c5b2a1, #8f7e70);
      box-shadow: var(--shadow);
      min-height: 360px;
      position:relative;
    }
    .photo::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(420px 260px at 70% 70%, rgba(0,0,0,.10), transparent 60%),
        radial-gradient(300px 220px at 15% 80%, rgba(0,0,0,.08), transparent 65%);
      mix-blend-mode: multiply;
      opacity:.7;
    }

    .copy{
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(0,0,0,.05);
      padding: 22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height: 360px;
    }
    .copy .shout{
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(0,0,0,.62);
      margin-bottom: 10px;
    }
    .copy h3{
      margin: 0 0 10px;
      font-family: var(--serif);
      font-weight: 600;
      font-size: 28px;
      line-height: 1.08;
    }
    .copy p{
      margin: 0 0 18px;
      color: rgba(0,0,0,.68);
      line-height: 1.6;
      font-size: 14px;
    }
    .copy .btn2{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.16);
      background: #fff;
      color: #111;
      font-size: 13px;
      width: fit-content;
    }

    @media (max-width: 980px){
      .split{ grid-template-columns: 1fr; }
      .photo, .copy{ min-height: 320px; }
    }

    /* ---------- Shop the look ---------- */
    .look{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 16px;
      margin-top: 14px;
      align-items:stretch;
    }
    .look .big{
      border-radius: 22px;
      border: 1px solid var(--line);
      overflow:hidden;
      box-shadow: var(--shadow);
      min-height: 420px;
      background:
        radial-gradient(900px 520px at 30% 25%, rgba(255,255,255,.55), transparent 55%),
        linear-gradient(135deg, #caa489, #8b6a57 55%, #d3b79f);
      position:relative;
    }

    .look .panel{
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.72);
      box-shadow: 0 10px 26px rgba(0,0,0,.05);
      padding: 18px;
      display:flex;
      flex-direction:column;
      gap: 10px;
      min-height: 420px;
    }

    .miniRail{
      display:flex;
      gap: 12px;
      overflow:auto;
      scroll-snap-type: x mandatory;
      padding: 4px 4px 10px;
      scrollbar-width:none;
    }
    .miniRail::-webkit-scrollbar{ display:none; }

    .mini{
      scroll-snap-align:start;
      min-width: 220px;
      background:#fff;
      border: 1px solid rgba(0,0,0,.10);
      border-radius: 16px;
      overflow:hidden;
    }
    .mini .t{
      height: 120px;
      background:
        radial-gradient(300px 180px at 35% 35%, rgba(255,255,255,.75), transparent 60%),
        linear-gradient(135deg, #d7c8b8, #9c8e80);
      border-bottom: 1px solid rgba(0,0,0,.10);
    }
    .mini .b{ padding: 12px; }
    .mini .b .name{ margin:0 0 2px; }
    .mini .b .price{ justify-content:flex-start; gap: 10px; }

    @media (max-width: 980px){
      .look{ grid-template-columns: 1fr; }
      .look .panel, .look .big{ min-height: 360px; }
    }

    /* ---------- Guidance (blog cards) ---------- */
    .grid3cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 14px;
    }
    .post{
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow:hidden;
      box-shadow: 0 10px 26px rgba(0,0,0,.05);
      display:flex;
      flex-direction:column;
      min-height: 320px;
    }
    .post .img{
      height: 150px;
      background:
        radial-gradient(360px 220px at 35% 35%, rgba(255,255,255,.75), transparent 60%),
        linear-gradient(135deg, #cdbba8, #8f7e70);
      border-bottom: 1px solid var(--line);
    }
    .post .content{
      padding: 14px 14px 16px;
      display:flex;
      flex-direction:column;
      gap: 8px;
      flex:1;
    }
    .post .cat{
      font-size: 11px;
      letter-spacing:.14em;
      text-transform: uppercase;
      color: rgba(0,0,0,.55);
    }
    .post h4{
      margin:0;
      font-size: 16px;
      line-height: 1.25;
    }
    .post p{
      margin:0;
      color: rgba(0,0,0,.65);
      line-height: 1.55;
      font-size: 13.5px;
      flex:1;
    }
    .post .more{
      font-size: 13px;
      color: rgba(0,0,0,.72);
      border-bottom: 1px solid rgba(0,0,0,.25);
      width: fit-content;
      padding-bottom: 2px;
    }

    @media (max-width: 980px){
      .grid3cards{ grid-template-columns: 1fr; }
    }

    /* ---------- Value props ---------- */
    .props{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 14px;
    }
    .prop{
      background: rgba(255,255,255,.70);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 14px;
      display:flex;
      gap: 12px;
      align-items:flex-start;
    }
    .prop .bubble{
      width: 40px; height: 40px;
      border-radius: 14px;
      border: 1px solid rgba(0,0,0,.10);
      background: rgba(0,0,0,.04);
      display:grid; place-items:center;
      flex: 0 0 auto;
    }
    .prop h5{
      margin: 0 0 4px;
      font-size: 14px;
    }
    .prop p{
      margin:0;
      font-size: 13px;
      color: rgba(0,0,0,.65);
      line-height: 1.45;
    }

    @media (max-width: 980px){
      .props{ grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px){
      .props{ grid-template-columns: 1fr; }
    }

    /* ---------- Newsletter ---------- */
    .newsletter{
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.75);
      box-shadow: 0 10px 26px rgba(0,0,0,.05);
      padding: 22px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      margin-top: 14px;
    }
    .newsletter h3{
      margin:0 0 6px;
      font-family: var(--serif);
      font-weight: 600;
      font-size: 24px;
    }
    .newsletter p{
      margin:0;
      color: rgba(0,0,0,.65);
      font-size: 14px;
      line-height: 1.45;
    }
    form.sub{
      display:flex;
      gap: 10px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
      flex: 0 0 auto;
    }
    .input{
      height: 44px;
      min-width: 260px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.16);
      background: #fff;
      font-size: 14px;
      outline:none;
    }
    .submit{
      height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(0,0,0,.16);
      background: var(--cta);
      color: var(--ctaText);
      font-size: 13px;
      letter-spacing:.02em;
      cursor:pointer;
    }

    @media (max-width: 980px){
      .newsletter{ flex-direction:column; align-items:flex-start; }
      form.sub{ width:100%; justify-content:flex-start; }
      .input{ width:100%; min-width: unset; }
      .submit{ width:100%; }
    }

    /* ---------- Footer ---------- */
    footer{
      padding: 46px 0 70px;
      border-top: 1px solid var(--line);
      margin-top: 30px;
    }
    .foot{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 18px;
    }
    .foot h6{
      margin: 0 0 10px;
      font-size: 12px;
      letter-spacing:.14em;
      text-transform: uppercase;
      color: rgba(0,0,0,.62);
    }
    .foot a{
      display:block;
      padding: 8px 0;
      color: rgba(0,0,0,.70);
      font-size: 14px;
      width: fit-content;
    }
    .foot a:hover{ color: rgba(0,0,0,.90); }
    .about{
      color: rgba(0,0,0,.65);
      line-height: 1.6;
      font-size: 14px;
      max-width: 54ch;
    }
    .social{
      display:flex;
      gap: 10px;
      margin-top: 12px;
    }

    @media (max-width: 980px){
      .foot{ grid-template-columns: 1fr; }
    }

    /* ===== HERO ===== */
.hero {
  height: 90vh;
  position: relative;
}

.slider {
  height: 100%;
}

.slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
}

.content {
  max-width: 700px;
  padding: 0 10%;
  color: #fff;
}

.kicker {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ===== PROJECT CARDS ===== */
.card {
  overflow: hidden;
  border-radius: 16px;
}

.thumb {
  height: 260px;
  background-size: cover;
  background-position: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .thumb {
    height: 200px;
  }
}


/* ===== BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #2b2b2b;
  background: #f6f4f1;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  width: 100%;
  background: rgba(246,244,241,0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand strong {
  font-weight: 400;
  letter-spacing: 1px;
}

.brand span {
  display: block;
  font-size: 12px;
  opacity: 0.6;
}

.nav a {
  margin-left: 24px;
  font-size: 14px;
  text-decoration: none;
  color: #2b2b2b;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero.half {
  height: 70vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.45);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  padding: 0 10%;
  color: #ffffff;
}

.hero h1,
.hero h2 {
  font-weight: 200;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  opacity: 0.85;
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
}

.section.light {
  background: #ffffff;
}

.section h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 60px;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
}

.services h4 {
  font-weight: 300;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero,
  .hero.half {
    height: 80vh;
  }

  .header {
    position: relative;
  }
}
