
:root{
  --ivory:#f2eee6;
  --ivory-2:#e8e1d5;
  --paper:#f8f5ef;
  --charcoal:#20231f;
  --ink:#252720;
  --muted:#6e6f67;
  --gold:#a98d58;
  --gold-light:#c6b07d;
  --line:rgba(37,39,32,.15);
  --white:#fffdf8;
  --shadow:0 16px 50px rgba(29,31,27,.09);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:"Inter",Arial,sans-serif;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
button,input,textarea{font:inherit}
button{color:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(24px,5vw,72px);
  border-bottom:1px solid rgba(37,39,32,.08);
  background:rgba(242,238,230,.93);
  backdrop-filter:blur(14px);
}

.brand,.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-monogram{
  font-family:"Cormorant Garamond",serif;
  color:var(--gold);
  font-weight:600;
  font-size:32px;
  line-height:1;
  letter-spacing:-2px;
}
.brand-divider{
  width:1px;
  height:28px;
  background:rgba(37,39,32,.25);
}
.brand-name{
  font-size:10px;
  line-height:1;
  font-weight:600;
  letter-spacing:.25em;
  text-transform:uppercase;
}
.nav{
  display:flex;
  gap:34px;
}
.nav a{
  font-size:10px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  position:relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;right:100%;bottom:-8px;
  height:1px;background:var(--gold);
  transition:right .25s ease;
}
.nav a:hover::after{right:0}
.menu-toggle{display:none}

.hero{
  padding:18px 0 0;
}
.hero-shell{
  position:relative;
  min-height:700px;
  margin:0;
  overflow:hidden;
  border-top:1px solid rgba(37,39,32,.06);
  border-bottom:1px solid rgba(37,39,32,.06);
  background:#efe9de;
}
.hero-media{
  position:absolute;
  inset:0;
}
.hero-gradient{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(244,239,231,.93) 0%, rgba(244,239,231,.86) 17%, rgba(244,239,231,.52) 32%, rgba(244,239,231,.14) 49%, rgba(244,239,231,0) 65%),
    linear-gradient(180deg, rgba(244,239,231,.08) 0%, rgba(244,239,231,.01) 58%, rgba(0,0,0,.08) 100%);
  z-index:1;
}
.hero-copy{
  position:relative;
  z-index:3;
  max-width:660px;
  padding:88px 0 88px clamp(48px,8vw,140px);
}
.hero-aside{
  position:absolute;
  right:clamp(32px,4vw,58px);
  bottom:40px;
  z-index:3;
  color:rgba(255,252,246,.95);
  text-transform:uppercase;
  letter-spacing:.26em;
  font-size:11px;
  line-height:1.7;
  font-weight:500;
  text-align:left;
  text-shadow:0 2px 16px rgba(0,0,0,.28);
}
.eyebrow,.section-kicker{
  color:var(--gold);
  font-size:10px;
  letter-spacing:.22em;
  font-weight:600;
  text-transform:uppercase;
}
.hero h1,.intro h2,.projects h2,.approach h2,.contact h2{
  font-family:"Cormorant Garamond",serif;
  font-weight:500;
  line-height:.98;
  letter-spacing:-.025em;
}
.hero h1{
  margin:20px 0 24px;
  font-size:clamp(56px,5.7vw,93px);
}
.hero h1 em{
  color:var(--gold);
  font-weight:500;
}
.hero-intro{
  max-width:600px;
  color:var(--muted);
  font-size:15px;
}
.hero-actions{
  margin-top:32px;
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}

.button{
  appearance:none;
  border:1px solid transparent;
  min-height:48px;
  padding:0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:10px;
  font-weight:600;
  transition:transform .2s ease, opacity .2s ease;
}
.button:hover{transform:translateY(-1px)}
.button:disabled{opacity:.58;cursor:wait;transform:none}
.button-dark{background:var(--charcoal);color:var(--white)}
.button-light{background:var(--ivory);color:var(--charcoal)}
.text-link{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:600;
}
.text-link span{color:var(--gold);margin-left:6px}

.hero-sketch-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  filter:saturate(.92) brightness(1.01) contrast(.98);
}
.section-pad{
  padding:clamp(88px,9vw,142px) clamp(24px,5vw,72px);
}

.intro{
  border-top:1px solid var(--line);
}
.intro-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:clamp(50px,8vw,130px);
  margin-top:28px;
}
.intro h2{
  font-size:clamp(48px,5vw,80px);
  margin:0;
  max-width:760px;
}
.intro-copy{
  color:var(--muted);
  max-width:580px;
  align-self:end;
}
.intro-copy p{margin:0 0 18px}

.projects{
  background:var(--paper);
}
.projects-heading{
  display:grid;
  grid-template-columns:1fr 430px;
  gap:40px;
  align-items:end;
  margin-bottom:44px;
}
.projects h2{
  font-size:clamp(50px,5.2vw,78px);
  margin:14px 0 0;
}
.projects-heading>p{
  color:var(--muted);
  margin:0 0 8px;
}
.project-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:24px;
}
.project-card{
  border-top:1px solid var(--line);
  padding-top:14px;
}
.project-image{
  position:relative;
  overflow:hidden;
  background:var(--ivory-2);
  box-shadow:var(--shadow);
}
.project-image img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  transition:transform .45s ease;
}
.project-card:hover .project-image img{transform:scale(1.012)}
.status-badge{
  position:absolute;
  top:14px;left:14px;
  background:rgba(32,35,31,.88);
  color:var(--white);
  padding:7px 10px;
  font-size:8px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.project-meta{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:16px;
}
.project-meta h3{
  font-family:"Cormorant Garamond",serif;
  font-size:26px;
  font-weight:500;
  line-height:1.05;
  margin:0 0 3px;
}
.project-meta p{
  margin:0;
  color:var(--muted);
  font-size:12px;
}
.project-state{
  color:var(--gold);
  text-align:right;
  font-size:9px;
  line-height:1.35;
  letter-spacing:.12em;
  text-transform:uppercase;
  max-width:120px;
}

.approach{
  background:var(--paper);
  color:var(--charcoal);
}
.approach-frame{
  display:grid;
  grid-template-columns:minmax(330px,.95fr) minmax(430px,1.05fr);
  gap:0;
  align-items:stretch;
  overflow:hidden;
  border:1px solid rgba(37,39,32,.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(248,244,236,.72)),
    #f5f1e8;
  box-shadow:0 16px 42px rgba(31,33,30,.08);
}
.approach-image{
  position:relative;
  overflow:hidden;
  min-height:560px;
  background:#ece5d9;
}
.approach-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  filter:saturate(.88) brightness(1.02) contrast(.98);
}
.approach-image-tint{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(244,239,231,.10) 0%, rgba(244,239,231,0) 35%, rgba(244,239,231,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.approach-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(42px,4vw,62px) clamp(28px,4vw,54px);
}
.approach-title{
  margin-bottom:24px;
  max-width:640px;
}
.approach h2{
  margin:12px 0 16px;
  font-size:clamp(54px,5vw,84px);
  line-height:.93;
  letter-spacing:-.035em;
}
.approach-intro{
  color:var(--muted);
  max-width:560px;
  margin:0;
  font-size:15px;
  line-height:1.72;
}
.approach-list{
  border-top:1px solid var(--line);
}
.approach-row{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:20px;
  padding:24px 0 22px;
  border-bottom:1px solid var(--line);
}
.approach-row>span{
  color:var(--gold);
  font-family:"Cormorant Garamond",serif;
  font-size:22px;
  line-height:1.2;
  padding-top:3px;
}
.approach-row h3{
  font-family:"Cormorant Garamond",serif;
  color:var(--charcoal);
  font-weight:500;
  font-size:32px;
  line-height:1.02;
  margin:0 0 8px;
}
.approach-row p{
  color:var(--muted);
  margin:0;
  max-width:620px;
  font-size:14px;
  line-height:1.68;
}

.contact{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:clamp(60px,8vw,120px);
  background:var(--ivory);
}
.contact h2{
  font-size:clamp(52px,5.4vw,82px);
  margin:18px 0 20px;
}
.contact-copy>p{
  color:var(--muted);
}
.company-contact{
  margin-top:34px;
  font-style:normal;
  font-size:13px;
  line-height:1.8;
}
.company-contact strong{
  font-weight:600;
}
.company-contact a{
  border-bottom:1px solid rgba(37,39,32,.3);
}

.form-wrap{
  min-height:440px;
}
.contact-form{
  border-top:1px solid var(--line);
  padding-top:16px;
}
.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.contact-form label{
  display:block;
  margin-bottom:18px;
}
.contact-form label>span{
  display:block;
  margin-bottom:7px;
  color:var(--gold);
  font-size:8px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:0;
  border-bottom:1px solid rgba(37,39,32,.23);
  background:transparent;
  padding:10px 0 12px;
  color:var(--ink);
  outline:0;
  resize:vertical;
  border-radius:0;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-bottom-color:var(--gold);
}
.hidden-field{
  position:absolute!important;
  left:-10000px!important;
  width:1px!important;
  height:1px!important;
  opacity:0!important;
}
.form-status{
  min-height:18px;
  margin:14px 0 0;
  color:#8b3d34;
  font-size:12px;
}

.success-panel{
  border-top:1px solid var(--line);
  padding-top:34px;
  min-height:360px;
}
.success-mark{
  width:46px;height:46px;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  color:var(--gold);
  border-radius:50%;
  font-size:20px;
}
.success-kicker{
  margin:26px 0 8px;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:9px;
  font-weight:600;
}
.success-panel h3{
  font-family:"Cormorant Garamond",serif;
  font-size:48px;
  font-weight:500;
  margin:0 0 8px;
}
.success-panel p{
  max-width:470px;
  color:var(--muted);
}
.text-button{
  margin-top:15px;
  padding:0 0 5px;
  border:0;
  border-bottom:1px solid rgba(37,39,32,.35);
  background:transparent;
  cursor:pointer;
  text-transform:uppercase;
  font-size:9px;
  font-weight:600;
  letter-spacing:.14em;
}

.site-footer{
  padding:38px clamp(24px,5vw,72px);
  background:#1b1e1b;
  color:rgba(255,255,255,.72);
  display:grid;
  grid-template-columns:1.1fr .7fr 1fr;
  gap:30px 50px;
  align-items:start;
}
.site-footer .brand-divider{
  background:rgba(255,255,255,.28);
}
.site-footer .brand-name{
  color:var(--white);
}
.footer-contact{
  font-size:11px;
  line-height:1.6;
}
.footer-contact strong{color:var(--white)}
.footer-tagline{
  text-align:right;
  color:var(--gold-light);
  font-size:9px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.footer-copy{
  grid-column:1/-1;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:9px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .75s ease,transform .75s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}

@media(max-width:1100px){
  .hero{grid-template-columns:1fr}
  .hero-visual{min-height:460px}
  .project-grid{grid-template-columns:1fr 1fr}
  .project-card.featured{grid-column:1/-1}
  .project-card.featured .project-image img{aspect-ratio:16/8}
}

@media(max-width:900px){
  .nav{
    position:absolute;
    top:78px;
    left:0;right:0;
    display:none;
    flex-direction:column;
    gap:18px;
    padding:24px;
    background:var(--ivory);
    border-bottom:1px solid var(--line);
  }
  .nav.open{display:flex}
  .menu-toggle{
    display:flex;
    border:0;background:transparent;
    width:34px;height:34px;
    align-items:center;justify-content:center;
    flex-direction:column;gap:6px;
  }
  .menu-toggle span{
    width:22px;height:1px;background:var(--ink);
  }
  .intro-grid,
  .projects-heading,
  .approach,
  .contact{
    grid-template-columns:1fr;
  }
  .projects-heading>p{max-width:580px}
  .site-footer{grid-template-columns:1fr 1fr}
  .footer-tagline{text-align:left}
}

@media(max-width:620px){
  .site-header{height:70px}
  .nav{top:70px}
  .brand-name{display:none}
  .hero{padding-top:58px}
  .hero h1{font-size:52px}
  .hero-visual{min-height:320px}
  .hero-orbit{width:130px;height:130px;right:26px;top:26px}
  .project-grid{grid-template-columns:1fr}
  .project-card.featured{grid-column:auto}
  .project-card.featured .project-image img{aspect-ratio:4/3}
  .field-row{grid-template-columns:1fr;gap:0}
  .site-footer{grid-template-columns:1fr}
  .footer-copy{grid-column:auto}
}


@media(max-width:900px){
  .approach-image img{
    min-height:300px;
  }
}


@media(max-width:1100px){
  .hero-shell{
    min-height:620px;
  }
  .hero-copy{
    max-width:590px;
    padding:72px 32px 80px 40px;
  }
  .hero-aside{
    right:28px;
    bottom:28px;
    font-size:10px;
  }
  .approach-shell{
    grid-template-columns:1fr;
  }
  .approach-image{
    min-height:360px;
  }
}

@media(max-width:900px){
  .hero-shell{
    min-height:640px;
  }
  .hero-gradient{
    background:
      linear-gradient(180deg, rgba(244,239,231,.93) 0%, rgba(244,239,231,.84) 24%, rgba(244,239,231,.44) 48%, rgba(244,239,231,.12) 72%, rgba(244,239,231,.04) 100%);
  }
  .hero-copy{
    max-width:none;
    padding:58px 24px 120px;
  }
  .hero-aside{
    left:24px;
    right:auto;
    bottom:24px;
    color:rgba(255,252,246,.92);
  }
}

@media(max-width:620px){
  .hero{
    padding-top:0;
  }
  .hero-shell{
    min-height:580px;
  }
  .hero-copy{
    padding:42px 22px 96px;
  }
  .hero h1{
    font-size:50px;
  }
  .approach-image{
    min-height:280px;
  }
  .approach-content{
    padding:28px 20px 34px;
  }
}


@media(max-width:1100px){
  .approach-frame{
    grid-template-columns:1fr;
    gap:24px;
  }
  .approach-image{
    min-height:380px;
  }
  .approach-content{
    padding-top:0;
  }
}

@media(max-width:620px){
  .approach-image{
    min-height:280px;
  }
  .approach h2{
    font-size:46px;
  }
  .approach-row{
    grid-template-columns:40px 1fr;
    gap:14px;
    padding:20px 0;
  }
  .approach-row h3{
    font-size:26px;
  }
}


@media(max-width:1100px){
  .approach-frame{
    grid-template-columns:1fr;
  }
  .approach-image{
    min-height:380px;
  }
  .approach-content{
    padding:30px 22px 34px;
  }
}

@media(max-width:620px){
  .approach-image{
    min-height:270px;
  }
  .approach h2{
    font-size:46px;
  }
  .approach-row{
    grid-template-columns:40px 1fr;
    gap:14px;
    padding:19px 0;
  }
  .approach-row h3{
    font-size:27px;
  }
}


/* =========================================================
   Version 2.9 — Final Luxury Polish
   Header/logo, spacing rhythm, project typography, contact
   ========================================================= */

/* 1) Header / logo scale */
.site-header{
  height:84px;
  padding-left:clamp(28px,4.5vw,68px);
  padding-right:clamp(28px,4.5vw,68px);
  background:rgba(244,240,232,.95);
  border-bottom-color:rgba(37,39,32,.07);
}

.brand,
.footer-brand{
  gap:15px;
}

.brand-monogram{
  font-size:37px;
  letter-spacing:-2.4px;
}

.brand-divider{
  height:31px;
  background:rgba(37,39,32,.20);
}

.brand-name{
  font-size:10.5px;
  letter-spacing:.265em;
}

.nav{
  gap:38px;
}

.nav a{
  font-size:10px;
  letter-spacing:.185em;
  font-weight:600;
}

.nav a::after{
  bottom:-9px;
}

/* 2) Consistent section rhythm */
.section-pad{
  padding-top:clamp(78px,7.2vw,112px);
  padding-bottom:clamp(78px,7.2vw,112px);
  padding-left:clamp(28px,4.5vw,68px);
  padding-right:clamp(28px,4.5vw,68px);
}

.intro-grid{
  margin-top:24px;
  gap:clamp(48px,7vw,110px);
}

.projects-heading{
  margin-bottom:38px;
}

.projects-heading > p{
  max-width:400px;
  line-height:1.7;
}

.project-grid{
  gap:26px;
}

/* 3) Project-card typography and visual hierarchy */
.project-card{
  padding-top:12px;
}

.project-meta{
  padding-top:14px;
  gap:18px;
  align-items:flex-start;
}

.project-meta h3{
  font-size:clamp(25px,1.8vw,30px);
  line-height:1.02;
  letter-spacing:-.012em;
  margin-bottom:5px;
}

.project-meta p{
  font-size:11.5px;
  line-height:1.45;
  letter-spacing:.015em;
}

.project-state{
  font-size:8.3px;
  line-height:1.45;
  letter-spacing:.145em;
  max-width:126px;
  padding-top:3px;
}

.status-badge{
  top:12px;
  left:12px;
  padding:6px 9px;
  font-size:7.6px;
  letter-spacing:.19em;
  background:rgba(29,32,29,.90);
}

/* Approach section spacing alignment with adjacent sections */
.approach-frame{
  box-shadow:0 14px 36px rgba(31,33,30,.07);
}

.approach-content{
  padding-top:clamp(38px,3.8vw,56px);
  padding-bottom:clamp(38px,3.8vw,56px);
}

.approach-title{
  margin-bottom:20px;
}

.approach h2{
  margin-top:11px;
  margin-bottom:15px;
}

.approach-row{
  padding-top:22px;
  padding-bottom:21px;
}

/* 4) Contact section refinement */
.contact{
  position:relative;
  grid-template-columns:.78fr 1.22fr;
  gap:clamp(56px,7vw,104px);
  align-items:start;
  background:
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0)),
    var(--ivory);
}

.contact::before{
  content:"";
  position:absolute;
  top:0;
  left:clamp(28px,4.5vw,68px);
  right:clamp(28px,4.5vw,68px);
  height:1px;
  background:rgba(37,39,32,.07);
}

.contact-copy{
  max-width:560px;
}

.contact h2{
  font-size:clamp(50px,4.7vw,72px);
  line-height:.96;
  margin:16px 0 18px;
  max-width:580px;
}

.contact-copy > p{
  font-size:14px;
  line-height:1.7;
  max-width:450px;
}

.company-contact{
  margin-top:28px;
  font-size:12.5px;
  line-height:1.75;
}

.company-contact strong{
  letter-spacing:.01em;
}

.company-contact a{
  padding-bottom:2px;
  border-bottom-color:rgba(37,39,32,.24);
}

.form-wrap{
  min-height:0;
  padding-top:4px;
}

.contact-form{
  border-top-color:rgba(37,39,32,.14);
  padding-top:12px;
}

.field-row{
  gap:28px;
}

.contact-form label{
  margin-bottom:15px;
}

.contact-form label > span{
  margin-bottom:6px;
  font-size:7.8px;
  letter-spacing:.18em;
}

.contact-form input,
.contact-form textarea{
  padding-top:9px;
  padding-bottom:11px;
  border-bottom-color:rgba(37,39,32,.20);
  font-size:13px;
}

.contact-form textarea{
  min-height:118px;
}

.contact-form .button{
  margin-top:6px;
  min-height:46px;
  padding-left:24px;
  padding-right:24px;
}

.form-status{
  margin-top:11px;
}

/* Footer refinement so it matches the new header proportions */
.site-footer{
  padding-top:34px;
  padding-bottom:30px;
}

.site-footer .brand-monogram{
  font-size:31px;
}

.site-footer .brand-divider{
  height:26px;
}

.site-footer .brand-name{
  font-size:9.6px;
}

.footer-contact{
  font-size:10.5px;
}

.footer-tagline{
  font-size:8.5px;
}

/* Responsive polish */
@media(max-width:900px){
  .site-header{
    height:76px;
  }

  .nav{
    top:76px;
  }

  .brand-monogram{
    font-size:34px;
  }

  .section-pad{
    padding-top:72px;
    padding-bottom:72px;
  }

  .contact{
    grid-template-columns:1fr;
    gap:38px;
  }

  .contact::before{
    left:24px;
    right:24px;
  }

  .contact-copy{
    max-width:620px;
  }

  .form-wrap{
    max-width:760px;
  }
}

@media(max-width:620px){
  .site-header{
    height:70px;
  }

  .brand-monogram{
    font-size:31px;
  }

  .section-pad{
    padding-top:58px;
    padding-bottom:58px;
    padding-left:22px;
    padding-right:22px;
  }

  .projects-heading{
    margin-bottom:28px;
  }

  .project-grid{
    gap:30px;
  }

  .project-meta h3{
    font-size:26px;
  }

  .contact h2{
    font-size:46px;
  }

  .field-row{
    gap:0;
  }
}
