:root {
  --cream: #f3f4ef;
  --ivory: #ffffff;
  --wine: #2f55ff;
  --wine-dark: #111310;
  --rose: #caff3d;
  --ink: #111310;
  --gold: #caff3d;
  --sage: #6b7068;
  --line: rgba(17, 19, 16, 0.18);
  --serif: "Archivo", "IBM Plex Sans KR", sans-serif;
  --sans: "IBM Plex Sans KR", sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  content: "";
}

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

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  transform: translateY(-160%);
  background: var(--wine-dark);
  color: white;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 96px;
  align-items: center;
  padding: 0 max(30px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.brand {
  display: grid;
  grid-template-columns: 46px auto;
  align-items: center;
  justify-self: start;
  column-gap: 12px;
}

.brand__symbol {
  grid-row: 1 / 3;
  display: grid;
  width: 46px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50% 50% 46% 54%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.brand__name {
  align-self: end;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand__descriptor {
  align-self: start;
  margin-top: 3px;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.site-nav { display: flex; gap: 40px; font-size: 13px; }
.site-nav a { position: relative; padding: 39px 0; }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--wine);
  content: "";
  transition: transform 180ms ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-contact { justify-self: end; text-align: right; }
.header-contact span, .header-contact strong { display: block; }
.header-contact span { margin-bottom: 4px; color: var(--wine); font-size: 9px; letter-spacing: 0.12em; }
.header-contact strong { font-family: var(--serif); font-size: 18px; font-weight: 600; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  min-height: 820px;
  background: var(--ivory);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 7vw 70px max(30px, calc((100vw - var(--max)) / 2));
}

.micro-title {
  margin: 0 0 28px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.hero h1 { font-size: clamp(66px, 6.5vw, 112px); }
.hero h1 em { position: relative; color: var(--wine); font-style: normal; font-weight: 900; }
.hero h1 em::before {
  position: absolute;
  right: -8px;
  bottom: 7px;
  left: -8px;
  z-index: -1;
  height: 20px;
  transform: rotate(-1deg);
  background: rgba(195, 165, 101, 0.45);
  content: "";
}

.hero__lead { margin: 34px 0 0; font-size: 17px; line-height: 1.85; }

.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button--wine { background: var(--wine); box-shadow: 7px 7px 0 var(--gold); color: white; }
.arrow-link { padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 70px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}
.hero__facts div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.hero__facts dt { margin-bottom: 8px; color: var(--wine); font-size: 9px; letter-spacing: 0.15em; }
.hero__facts dd { margin: 0; font-family: var(--serif); font-size: 14px; }

.hero__scene { position: relative; min-width: 0; overflow: hidden; background: var(--wine-dark); }
.hero__scene::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 38px, rgba(0,0,0,.06) 38px 76px);
  content: "";
}
.hero__main-photo {
  position: absolute;
  top: 74px;
  right: 9%;
  width: 56%;
  height: 650px;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--ivory);
  box-shadow: 20px 20px 0 rgba(0,0,0,.22);
}
.hero__main-photo img, .hero__detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__main-photo figcaption, .hero__detail-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 16px;
  background: rgba(255,250,240,.92);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .12em;
}
.hero__detail-photo {
  position: absolute;
  bottom: 58px;
  left: 6%;
  width: 30%;
  height: 330px;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--ivory);
  box-shadow: 14px 14px 0 var(--gold);
}
.fabric-tag {
  position: absolute;
  top: 58px;
  left: 5%;
  display: flex;
  width: 210px;
  height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  transform: rotate(-5deg);
  background: var(--gold);
  color: var(--wine-dark);
}
.fabric-tag::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  height: 42px;
  border-bottom: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}
.fabric-tag span, .fabric-tag small { font-size: 9px; letter-spacing: .14em; }
.fabric-tag strong { font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.35; }

.section { padding: 140px max(30px, calc((100vw - var(--max)) / 2)); }
.section h2 { font-size: clamp(52px, 5.4vw, 84px); }

.statement {
  display: grid;
  grid-template-columns: 80px 1fr 340px;
  gap: 70px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement__number { align-self: start; padding-top: 8px; color: var(--wine); font-family: var(--serif); font-size: 34px; }
.statement__copy { max-width: 720px; }
.statement__copy > p:last-child { max-width: 670px; margin: 34px 0 0; font-size: 16px; line-height: 1.9; }
.statement__quote {
  position: relative;
  padding: 48px 40px;
  border: 1px solid var(--wine);
  color: var(--wine);
}
.statement__quote::before, .statement__quote::after {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  content: "";
}
.statement__quote::before { top: -7px; left: -7px; border-top: 3px solid; border-left: 3px solid; }
.statement__quote::after { right: -7px; bottom: -7px; border-right: 3px solid; border-bottom: 3px solid; }
.statement__quote span { font-size: 9px; letter-spacing: .17em; }
.statement__quote strong { display: block; margin-top: 24px; font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1.5; }

.collection { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: .7fr 1.15fr .8fr; gap: 60px; align-items: end; }
.section-heading .micro-title { align-self: start; margin-top: 14px; }
.section-heading > p:last-child { margin: 0 0 6px; font-size: 15px; line-height: 1.85; }

.room-plan { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 80px; border: 1px solid var(--ink); }
.room { position: relative; min-height: 520px; padding: 38px; overflow: hidden; }
.room:nth-child(even) { border-left: 1px solid var(--ink); }
.room:nth-child(n+3) { border-top: 1px solid var(--ink); }
.room--living { background: #e7ded0; }
.room--bed { background: var(--wine); color: white; }
.room--kids { background: #d8d4c3; }
.room--study { background: #bf9979; }
.room__label { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .14em; }
.room__label span { font-family: var(--serif); font-size: 23px; }
.room__visual { display: flex; height: 170px; margin: 42px 0 35px; overflow: hidden; border: 1px solid currentColor; }
.room__visual i { flex: 1; }
.room__visual--sheer i { background: linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,.95) 48%, rgba(155,132,109,.24)); box-shadow: inset -6px 0 12px rgba(70,48,34,.1); }
.room__visual--blackout i { background: linear-gradient(90deg, #39222a, #94686d 45%, #3b2028); box-shadow: inset -8px 0 16px rgba(0,0,0,.24); }
.room__visual--combi { flex-direction: column; }
.room__visual--combi i:nth-child(odd) { background: rgba(255,255,255,.72); }
.room__visual--combi i:nth-child(even) { background: rgba(88,78,58,.17); }
.room__visual--wood { flex-direction: column; }
.room__visual--wood i { background: linear-gradient(#d5b18e, #947050); border-bottom: 2px solid rgba(60,35,20,.32); }
.room h3 { margin: 0; font-family: var(--serif); font-size: 33px; font-weight: 600; }
.room p { max-width: 480px; min-height: 56px; margin: 18px 0 28px; line-height: 1.75; }
.room small { padding-top: 10px; border-top: 1px solid currentColor; font-size: 10px; letter-spacing: .12em; }
.collection__cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.collection__cta p { margin: 0; font-family: var(--serif); font-size: 23px; }
.collection__cta a { color: var(--wine); font-weight: 600; }

.portfolio { background: var(--wine-dark); color: white; }
.portfolio__heading { display: grid; grid-template-columns: 1fr .85fr; gap: 40px 90px; align-items: end; }
.portfolio__heading .micro-title { grid-column: 1 / -1; color: var(--gold); }
.portfolio__heading p:last-child { margin: 0 0 8px; color: rgba(255,255,255,.62); line-height: 1.8; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .85fr; grid-template-rows: 480px 390px; gap: 15px; margin-top: 80px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; background: #2c171d; }
.gallery__item--a { grid-row: 1 / 3; }
.gallery__item--d { grid-column: 2 / 4; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.gallery__item:hover img { transform: scale(1.035); }
.gallery__item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  background: rgba(53,20,28,.88);
  backdrop-filter: blur(10px);
}
.gallery__item figcaption span { color: var(--gold); font-family: var(--serif); font-size: 21px; }
.gallery__item figcaption strong { font-family: var(--serif); font-size: 15px; }
.gallery__item figcaption small { color: rgba(255,255,255,.55); font-size: 9px; }

.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; background: var(--cream); }
.process__lead { align-self: start; position: sticky; top: 90px; }
.process__lead > p:last-child { max-width: 420px; margin-top: 32px; line-height: 1.8; }
.process__steps { margin: 0; padding: 0; list-style: none; }
.process__steps li { display: grid; grid-template-columns: 115px 1fr; gap: 34px; padding: 38px 0; border-top: 1px solid var(--line); }
.process__steps li:last-child { border-bottom: 1px solid var(--line); }
.process__steps li > span { padding-top: 8px; color: var(--wine); font-size: 10px; letter-spacing: .15em; }
.process__steps h3 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 600; }
.process__steps p { margin: 12px 0 0; line-height: 1.75; }

.reputation { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; background: #b9aa84; }
.score { align-self: center; }
.score > span { display: block; margin-bottom: 15px; font-size: 9px; letter-spacing: .16em; }
.score strong { display: block; color: var(--wine); font-family: var(--serif); font-size: clamp(130px, 15vw, 220px); font-weight: 900; letter-spacing: -.1em; line-height: .83; }
.score p { margin: 25px 0 0; font-size: 17px; font-weight: 600; }
.score small { display: block; margin-top: 12px; opacity: .6; }
.reviews blockquote { display: grid; grid-template-columns: 125px 1fr; gap: 30px; margin: 0; padding: 36px 0; border-top: 1px solid var(--ink); }
.reviews blockquote:last-child { border-bottom: 1px solid var(--ink); }
.reviews span { padding-top: 8px; font-size: 9px; letter-spacing: .14em; }
.reviews p { margin: 0; font-family: var(--serif); font-size: clamp(23px, 2.2vw, 32px); line-height: 1.55; }

.contact { position: relative; min-height: 680px; overflow: hidden; background: var(--wine); color: white; }
.contact__copy { position: relative; z-index: 2; max-width: 850px; }
.contact .micro-title { color: var(--gold); }
.contact__copy > p:not(.micro-title) { max-width: 660px; margin: 34px 0 0; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.85; }
.contact__actions { display: flex; gap: 14px; margin-top: 42px; }
.button--cream { background: var(--ivory); color: var(--wine); }
.button--line { border-color: rgba(255,255,255,.65); color: white; }
.contact__curtain { position: absolute; top: 0; right: 0; bottom: 0; display: flex; width: 48%; opacity: .23; }
.contact__curtain i { flex: 1; background: linear-gradient(90deg, transparent, var(--gold) 46%, rgba(0,0,0,.7)); }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 28px 80px; padding: 65px max(30px, calc((100vw - var(--max)) / 2)); background: var(--wine-dark); color: white; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: var(--serif); font-size: 27px; }
.footer-brand span { margin-top: 8px; color: var(--gold); font-size: 9px; letter-spacing: .14em; }
.footer-info { display: grid; gap: 5px; text-align: right; }
.footer-info p { margin: 0 0 7px; color: rgba(255,255,255,.55); font-size: 12px; }
.site-footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.4); }
.mobile-contact { display: none; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero__copy { padding-right: 4vw; }
  .hero__main-photo { right: 5%; width: 62%; }
  .fabric-tag { left: 2%; width: 185px; }
  .statement { grid-template-columns: 60px 1fr 290px; gap: 40px; }
  .section-heading { grid-template-columns: .55fr 1.15fr .8fr; gap: 35px; }
  .gallery { grid-template-rows: 420px 340px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 76px; grid-template-columns: 1fr; padding: 0 20px; }
  .brand__symbol { width: 38px; height: 46px; font-size: 23px; }
  .brand { grid-template-columns: 38px auto; }
  .brand__name { font-size: 18px; }
  .header-contact { display: none; }
  .hero { display: flex; min-height: 0; flex-direction: column; }
  .hero__copy { padding: 80px 20px 58px; }
  .hero h1 { font-size: clamp(58px, 16vw, 82px); }
  .hero__lead { font-size: 15px; }
  .hero__lead br { display: none; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 24px; }
  .arrow-link { align-self: flex-start; }
  .hero__facts { margin-top: 50px; }
  .hero__facts div + div { padding-left: 8px; }
  .hero__facts dd { font-size: 11px; }
  .hero__scene { height: 660px; }
  .hero__main-photo { top: 48px; right: 20px; width: 69%; height: 545px; border-width: 7px; }
  .hero__detail-photo { bottom: 22px; left: 20px; width: 40%; height: 285px; border-width: 5px; }
  .fabric-tag { top: 36px; left: 12px; width: 160px; height: 220px; padding: 18px; }
  .fabric-tag strong { font-size: 20px; }
  .section { padding: 90px 20px; }
  .section h2 { font-size: clamp(45px, 13vw, 62px); }
  .statement { grid-template-columns: 1fr; gap: 35px; }
  .statement__number { padding: 0; }
  .statement__quote { margin-top: 12px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading .micro-title { margin: 0; }
  .room-plan { grid-template-columns: 1fr; margin-top: 55px; }
  .room { min-height: 490px; padding: 30px 25px; }
  .room:nth-child(even) { border-left: 0; }
  .room:nth-child(n+2) { border-top: 1px solid var(--ink); }
  .collection__cta { align-items: flex-start; flex-direction: column; }
  .portfolio__heading { grid-template-columns: 1fr; gap: 25px; }
  .portfolio__heading .micro-title { grid-column: auto; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 360px 360px; gap: 9px; margin-top: 55px; }
  .gallery__item--a { grid-column: 1 / 3; grid-row: 1; }
  .gallery__item--d { grid-column: 1 / 3; }
  .gallery__item figcaption { grid-template-columns: 30px 1fr; }
  .gallery__item figcaption small { display: none; }
  .process { grid-template-columns: 1fr; gap: 65px; }
  .process__lead { position: static; }
  .reputation { grid-template-columns: 1fr; gap: 75px; }
  .reviews blockquote { grid-template-columns: 1fr; gap: 12px; }
  .contact { min-height: 700px; }
  .contact__curtain { width: 100%; opacity: .11; }
  .contact__actions { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; padding: 55px 20px 120px; }
  .footer-info { text-align: left; }
  .mobile-contact {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 10px 10px 17px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(53,20,28,.96);
    box-shadow: 0 15px 38px rgba(0,0,0,.28);
    color: white;
    backdrop-filter: blur(12px);
  }
  .mobile-contact span, .mobile-contact strong { display: block; }
  .mobile-contact span { font-family: var(--serif); font-size: 17px; font-weight: 600; }
  .mobile-contact strong { margin-top: 3px; color: rgba(255,255,255,.55); font-size: 9px; }
  .mobile-contact a { display: grid; min-width: 112px; min-height: 52px; place-items: center; background: var(--gold); color: var(--wine-dark); font-weight: 600; }
}

@media (max-width: 480px) {
  .brand__descriptor { display: none; }
  .brand__symbol { grid-row: auto; }
  .hero__copy { padding-top: 68px; }
  .hero h1 { font-size: clamp(55px, 16vw, 69px); }
  .hero__facts { grid-template-columns: 1fr 1fr; }
  .hero__facts div:last-child { grid-column: 1 / -1; margin-top: 15px; padding: 15px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero__scene { height: 600px; }
  .hero__main-photo { height: 500px; }
  .hero__detail-photo { height: 250px; }
  .room { min-height: 470px; }
  .room__visual { height: 145px; }
  .gallery { grid-template-rows: 420px 310px 320px; }
  .gallery__item figcaption { right: 7px; bottom: 7px; left: 7px; padding: 10px; }
  .process__steps li { grid-template-columns: 80px 1fr; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

html[data-capture="true"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
html[data-capture="true"] .process__lead { position: static; }

/* Modern residential direction */
:root {
  --cream: #f3f4ef;
  --ivory: #ffffff;
  --wine: #2f55ff;
  --wine-dark: #111310;
  --rose: #caff3d;
  --ink: #111310;
  --gold: #caff3d;
  --sage: #6b7068;
  --line: rgba(17, 19, 16, 0.18);
  --serif: "Archivo", "IBM Plex Sans KR", sans-serif;
  --sans: "IBM Plex Sans KR", sans-serif;
  --max: 1320px;
}

body::after { display: none; }

.site-header {
  min-height: 84px;
  padding-inline: max(32px, calc((100vw - var(--max)) / 2));
  background: var(--ivory);
}

.brand { grid-template-columns: 40px auto; column-gap: 12px; }
.brand__symbol {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
}
.brand__name { font-family: var(--sans); font-size: 18px; font-weight: 700; }
.brand__descriptor { margin-top: 1px; color: #6b7068; font-family: var(--serif); font-size: 8px; }
.site-nav { gap: 38px; font-weight: 500; }
.site-nav a { padding-block: 34px; }
.site-nav a::after { bottom: 24px; height: 2px; background: var(--wine); }
.header-contact span { color: #6b7068; font-family: var(--serif); font-size: 8px; }
.header-contact strong { font-family: var(--serif); font-size: 17px; font-weight: 700; }

.hero {
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  min-height: 820px;
  background: var(--ivory);
}
.hero__copy { padding: 92px 7vw 62px max(32px, calc((100vw - var(--max)) / 2)); }
.micro-title { margin-bottom: 25px; color: var(--wine); font-family: var(--serif); font-weight: 700; }
.hero h1,
.section h2 { font-family: var(--serif); font-weight: 700; letter-spacing: -.075em; line-height: .98; }
.hero h1 { font-size: clamp(68px, 6.8vw, 112px); }
.hero h1 em { display: inline-block; color: var(--ink); font-weight: 700; }
.hero h1 em::before { right: -7px; bottom: 4px; left: -7px; height: 31%; background: var(--gold); }
.hero__lead { margin-top: 32px; color: #393d38; font-size: 16px; line-height: 1.8; }
.hero__actions { margin-top: 36px; }
.button { min-height: 58px; font-weight: 700; }
.button--wine { background: var(--gold); box-shadow: 7px 7px 0 var(--ink); color: var(--ink); }
.arrow-link { font-weight: 600; }
.hero__facts { margin-top: 62px; }
.hero__facts dt { color: #6b7068; font-family: var(--serif); font-size: 8px; font-weight: 700; }
.hero__facts dd { font-family: var(--sans); font-size: 13px; font-weight: 600; }
.hero__scene { background: #dfe1da; }
.hero__scene::before { background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,.46)); }
.hero__main-photo { inset: 0 0 0 12%; width: auto; height: auto; border: 0; box-shadow: none; }
.hero__main-photo figcaption,
.hero__detail-photo figcaption {
  right: 0;
  left: auto;
  background: var(--ink);
  color: white;
  font-family: var(--serif);
  font-size: 8px;
}
.hero__detail-photo {
  right: 0;
  bottom: 38px;
  left: auto;
  width: 31%;
  height: 280px;
  border: 8px solid var(--ivory);
  box-shadow: -16px 16px 0 var(--gold);
}
.fabric-tag {
  top: 42px;
  left: 0;
  width: 190px;
  height: 170px;
  padding: 20px;
  transform: none;
  background: var(--wine);
  color: white;
}
.fabric-tag::after { display: none; }
.fabric-tag span,
.fabric-tag small { font-family: var(--serif); font-size: 8px; }
.fabric-tag strong { font-family: var(--serif); font-size: 31px; font-weight: 700; letter-spacing: -.05em; line-height: .9; }

.section { padding: 130px max(32px, calc((100vw - var(--max)) / 2)); }
.statement { grid-template-columns: 80px 1fr 360px; gap: 64px; background: var(--cream); }
.statement__number { color: var(--wine); font-family: var(--serif); font-size: 30px; font-weight: 700; }
.statement__copy > p:last-child { color: #454944; }
.statement__quote { padding: 44px 36px; border: 0; background: var(--gold); color: var(--ink); }
.statement__quote::before,
.statement__quote::after { display: none; }
.statement__quote span { font-family: var(--serif); font-weight: 700; }
.statement__quote strong { font-family: var(--sans); font-size: 29px; font-weight: 700; letter-spacing: -.05em; line-height: 1.4; }

.collection { background: var(--ivory); }
.section-heading { grid-template-columns: .65fr 1.15fr .8fr; gap: 58px; }
.section-heading > p:last-child { color: #6b7068; }
.room-plan { margin-top: 74px; border: 0; border-top: 1px solid var(--ink); }
.room { min-height: 480px; padding: 34px; border-bottom: 1px solid var(--ink); }
.room:nth-child(n+3) { border-top: 0; }
.room--living { background: #e8ebe3; }
.room--bed { background: var(--ink); }
.room--kids { background: #dfe6ff; }
.room--study { background: var(--gold); }
.room__label { font-family: var(--serif); font-weight: 700; }
.room__label span { font-family: var(--serif); font-size: 22px; }
.room__visual { height: 150px; margin: 38px 0 30px; }
.room__visual--blackout i { background: linear-gradient(90deg, #141714, #565b54 45%, #0f110f); }
.room__visual--combi i:nth-child(even) { background: rgba(47,85,255,.15); }
.room__visual--wood i { background: rgba(17,19,16,.12); border-color: rgba(17,19,16,.3); }
.room h3 { font-family: var(--sans); font-size: 29px; font-weight: 700; letter-spacing: -.05em; }
.room p { margin-top: 15px; opacity: .75; }
.room small { font-family: var(--serif); font-size: 8px; }
.collection__cta { padding-block: 30px; border: 0; }
.collection__cta p { font-family: var(--sans); font-size: 21px; font-weight: 600; letter-spacing: -.035em; }
.collection__cta a { color: var(--wine); font-weight: 700; }

.portfolio { background: var(--ink); }
.portfolio__heading .micro-title { color: var(--gold); }
.gallery { grid-template-rows: 480px 390px; gap: 8px; margin-top: 74px; }
.gallery__item { background: #242724; }
.gallery__item figcaption {
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 18px;
  background: rgba(17,19,16,.9);
}
.gallery__item figcaption span { color: var(--gold); font-family: var(--serif); font-size: 18px; font-weight: 700; }
.gallery__item figcaption strong { font-family: var(--sans); font-size: 14px; }
.gallery__item figcaption small { font-family: var(--serif); font-size: 8px; }

.process { background: var(--cream); }
.process__steps li > span { color: var(--wine); font-family: var(--serif); font-size: 9px; font-weight: 700; }
.process__steps h3 { font-family: var(--sans); font-size: 26px; font-weight: 700; letter-spacing: -.045em; }
.process__steps p { color: #6b7068; }
.process__lead > p:last-child { color: #6b7068; }

.reputation { background: var(--wine); color: white; }
.score > span { font-family: var(--serif); font-weight: 700; }
.score strong { color: var(--gold); font-family: var(--serif); font-weight: 700; }
.reviews blockquote { border-color: rgba(255,255,255,.45); }
.reviews blockquote:last-child { border-color: rgba(255,255,255,.45); }
.reviews span { font-family: var(--serif); font-weight: 700; }
.reviews p { font-family: var(--sans); font-weight: 500; letter-spacing: -.04em; }

.contact { min-height: 620px; background: var(--gold); color: var(--ink); }
.contact .micro-title { color: var(--wine); }
.contact__copy > p:not(.micro-title) { color: rgba(17,19,16,.7); }
.button--cream { background: var(--ink); color: white; }
.button--line { border-color: var(--ink); color: var(--ink); }
.contact__curtain { width: 44%; opacity: .18; }
.contact__curtain i { background: linear-gradient(90deg, transparent, var(--wine) 46%, var(--ink)); }

.site-footer { background: var(--ink); }
.footer-brand strong { font-family: var(--sans); font-size: 25px; font-weight: 700; }
.footer-brand span { color: var(--gold); font-family: var(--serif); font-size: 8px; }

.reveal { transform: translateY(28px); transition-duration: 600ms, 700ms; }

@media (max-width: 1100px) {
  .statement { grid-template-columns: 60px 1fr 300px; gap: 40px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 72px; padding-inline: 20px; }
  .brand { grid-template-columns: 38px auto; }
  .brand__symbol { width: 38px; height: 38px; font-size: 20px; }
  .brand__name { font-size: 17px; }
  .hero__copy { padding: 72px 20px 52px; }
  .hero__scene { height: 620px; }
  .hero__main-photo { inset: 0; }
  .hero__detail-photo { right: 0; bottom: 24px; width: 38%; height: 250px; border-width: 6px; }
  .fabric-tag { top: 22px; left: 16px; width: 150px; height: 140px; padding: 16px; }
  .fabric-tag strong { font-size: 25px; }
  .section { padding: 86px 20px; }
  .statement { grid-template-columns: 1fr; gap: 32px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading .micro-title { margin: 0; }
  .room { min-height: 450px; padding: 28px 24px; }
  .room:nth-child(n+2) { border-top: 0; }
  .portfolio__heading { grid-template-columns: 1fr; gap: 24px; }
  .portfolio__heading .micro-title { grid-column: auto; }
  .gallery { grid-template-rows: 480px 340px 340px; gap: 6px; margin-top: 50px; }
  .gallery__item figcaption { right: 0; bottom: 0; left: 0; }
  .contact { min-height: 650px; }
  .mobile-contact { background: rgba(17,19,16,.96); }
  .mobile-contact span { font-family: var(--sans); font-weight: 700; }
  .mobile-contact a { background: var(--gold); color: var(--ink); font-weight: 700; }
}

@media (max-width: 480px) {
  .hero__scene { height: 560px; }
  .hero__detail-photo { height: 220px; }
  .room { min-height: 440px; }
  .gallery { grid-template-rows: 400px 290px 310px; }
}
