:root{
  --bg:#fff;
  --text:#0f1012;
  --muted:rgba(15,16,18,.66);
  --rule:rgba(15,16,18,.14);

  --serif:"DM Serif Display", ui-serif, Georgia, serif;
  --sans:"Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  --max: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--sans);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

img{ display:block; width:100%; height:auto; }
a{ color:inherit; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--max), calc(100% - 44px));
  margin:0 auto;
}

.center{ text-align:center; }
.work{
  margin: 0;
}

.work img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--rule);
  background: rgba(15,16,18,.03);
  border-radius: 14px;

  transform: scale(1);
  transition: transform .45s ease;
}

.work:hover img{
  transform: scale(1.04);
}
h1,h2,h3{
  font-family:var(--serif);
  font-weight:400;
  line-height:1.05;
  letter-spacing:.2px;
  margin:0 0 14px 0;
}

h1{ font-size:clamp(44px, 4.6vw, 72px); }
h2{ font-size:clamp(34px, 3.2vw, 48px); margin-bottom:18px; }
h3{ font-size:22px; margin:0 0 10px 0; }

.subhead{
  font-size:clamp(28px, 2.6vw, 40px);
  margin: 0 0 16px 0;
}

p{
  margin:0 0 16px 0;
  color:var(--muted);
}

.lead{
  max-width: 72ch;
  margin-left:auto;
  margin-right:auto;
  font-size: 17px;
  line-height: 1.9;
}

/* --- HERO --- */
.hero{
  position:relative;
  width:100%;
  height: clamp(560px, 82vh, 900px);
  overflow:hidden;
  background:#000;
}

.hero-img{
  height:100%;
  width:100%;
  object-fit:cover;
  object-position:center;
}

.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: 0 24px;
  text-align:center;
}

.hero-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at center,
    rgba(0,0,0,.34) 0%,
    rgba(0,0,0,.26) 40%,
    rgba(0,0,0,.12) 72%,
    rgba(0,0,0,0) 100%);
}

.hero-overlay h1,
.hero-overlay p,
.hero-overlay a{
  position:relative;
  color:#fff;
}

.hero-overlay p{
  max-width: 68ch;
  color: rgba(255,255,255,.86);
  font-size: 16px;
  margin-bottom: 18px;
}

/* --- CTA BUTTON (white, high-end) --- */
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.85);
  background: rgba(255,255,255,.95);
  color: #0f1012; /* FORCE BLACK TEXT */
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .22px;
  transition: 
    transform .18s ease,
    background .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}
/* FORCE CTA TEXT TO ALWAYS BE BLACK */
.hero-overlay .cta,
.hero-overlay .cta:hover,
.hero-overlay .cta:visited,
.hero-overlay .cta:active {
  color: #000000 !important;
}
.cta:hover{
  text-decoration:none;
  transform: translateY(-1px);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* --- SECTIONS --- */
.section{ padding: 96px 0; }

.section-process{
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
  background: rgba(15,16,18,.02);
}

/* --- PROCESS --- */
.process-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 28px;
  text-align:center;
}

.process-item p{
  margin: 0;
  max-width: 44ch;
  margin-left:auto;
  margin-right:auto;
  font-size: 15px;
  line-height: 1.9;
}

.process-num{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--rule);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 14px auto;
  font-size:13px;
  color: rgba(15,16,18,.68);
  background:#fff;
}

/* --- WORKS: BIG + VERTICAL (portrait interiors) --- */
.section-works{
  border-bottom: 1px solid var(--rule);
}

.works-vertical{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.work{
  margin: 0;
}

.work-media{
  overflow: hidden;
  border: 1px solid var(--rule);
  background: rgba(15,16,18,.03);
  border-radius: 14px;
}

/* Portrait ratio that preserves furniture & scale */
.work-media img{
  width: 100%;
  aspect-ratio: 4 / 5;      /* slightly less tall than 3/4 */
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform .35s ease;
}

/* subtle, architectural hover */
.work:hover .work-media img{
  transform: scale(1.03);
}

figcaption{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(15,16,18,.60);
  line-height: 1.5;
}

/* --- CENTERPIECE --- */
.centerpiece-block{
  margin-top: 74px;
  padding-top: 40px;
  border-top:1px solid var(--rule);
}

.centerpiece{
  margin: 0;
  max-width: 980px;
  margin-left:auto;
  margin-right:auto;
}

.centerpiece-media{
  overflow:hidden;
  border: 1px solid var(--rule);
  background: rgba(15,16,18,.03);
  border-radius: 14px;
}

.centerpiece-media img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* --- CONTACT --- */
.section-contact{
  padding: 92px 0 78px;
  background: rgba(15,16,18,.02);
}

.contact-note{ margin-bottom: 22px; }

.contact-grid{
  display:grid;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
  text-align:left;
  padding-top: 6px;
}

.contact-row{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,16,18,.10);
}

.contact-row span:first-child{
  font-size:12px;
  letter-spacing:.18px;
  text-transform:uppercase;
  color: rgba(15,16,18,.62);
}

.contact-row .plain{
  color: rgba(15,16,18,.66);
}

.footer{
  margin-top: 34px;
  font-size: 13px;
  color: rgba(15,16,18,.55);
}

/* --- MOBILE --- */
@media (max-width: 920px){
  .process-grid{ grid-template-columns: 1fr; gap: 22px; }
  .section{ padding: 72px 0; }
  .hero{ height: clamp(560px, 72vh, 760px); }
  .works-vertical{ gap: 34px; }
}
