:root {
  --ink: #0b0b0b;
  --navy: #0c2636;
  --navy-2: #163445;
  --linen: #f6f1e8;
  --linen-2: #efe8db;
  --paper: #fbf8f3;
  --champagne: #c4a574;
  --champagne-2: #d4b896;
  --gold: #c4a574;
  --gold-2: #d4b896;
  --gold-3: #e2c9a3;
  --muted: #7a7368;
  --text: #4d4943;
  --dark: #1a1816;
  --line: #e4ddd2;
  --white: #ffffff;
  --header-h: 80px;
  --page: 1180px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Questrial", sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .25s ease, opacity .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
a:hover { color: var(--champagne); }
h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant Garamond", "Lora", serif;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3vw, 2.65rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1.25em; }
ul { margin: 0 0 1.25em; padding-left: 1.15em; }
.container {
  width: min(var(--page), calc(100% - 48px));
  margin: 0 auto;
}

/* Header — solid, sticky, same container as page content */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-bar {
  position: relative;
  background: var(--ink);
  border-bottom: 1px solid rgba(196,165,116,.18);
}
.site-header.is-sticky .header-bar {
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.header-inner {
  display: flex;
  align-items: stretch;
  min-height: var(--header-h);
}
.logo-box {
  display: flex;
  align-items: center;
  padding: 8px 6px 8px 0;
  flex-shrink: 0;
}
.logo-box img {
  height: 50px;
  width: auto;
  mix-blend-mode: lighten;
}
.nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 20px;
  padding-left: 24px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  color: rgba(255,255,255,.84);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 11px;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px; bottom: 6px;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.nav a:hover, .nav a.active { color: var(--gold-3); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-cta {
  color: var(--gold-3) !important;
  border: 1px solid rgba(196,165,116,.65);
  padding: 9px 16px !important;
  font-size: 11px !important;
  letter-spacing: .16em !important;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--champagne);
  color: var(--ink) !important;
  border-color: var(--champagne);
}
.header-cta::after { display: none !important; }
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 1px;
  background: #fff;
  margin: 6px auto;
}

/* Inner page title */
.page-hero {
  background: var(--ink) url("../images/home/luxury-modern-style-bedroom-interior-hotel-bedroom-generative-ai-illustration.webp") center/cover no-repeat;
  color: var(--white);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,.28), rgba(11,11,11,.7));
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 64px 0 44px;
}
.page-hero h1 { color: var(--white); margin: 0 0 10px; }
.crumbs { color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .08em; }
.crumbs a { color: var(--gold-3); }

/* Home hero — sits below header, copy aligned to container */
.home-hero { position: relative; background: var(--ink); }
.slider {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
}
@supports (height: 100svh) {
  .slider { min-height: calc(100svh - var(--header-h)); }
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}
.slide.active { opacity: 1; z-index: 1; animation: ken 14s ease-out forwards; }
@keyframes ken { from { transform: scale(1.08); } to { transform: scale(1); } }
.slide::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11,11,11,.68) 0%, rgba(11,11,11,.28) 52%, rgba(11,11,11,.2) 100%);
}
.slide > .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.slide-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 18vh 0 120px;
  max-width: 640px;
}
.slide-copy h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  margin: 0 0 18px;
}
.slide-copy p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  max-width: 440px;
  margin-bottom: 28px;
}
.slider-nav {
  position: absolute;
  left: 0; right: 0;
  bottom: 36px;
  z-index: 5;
}
.slider-nav-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-nav button {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
}
.slider-nav button:hover { background: var(--champagne); border-color: var(--champagne); color: var(--ink); }
.slider-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.slider-dots button {
  width: 22px; height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.slider-dots button.active { background: var(--champagne); }

/* Feature strip under hero */
.feature-strip {
  background: var(--paper);
  padding: 36px 0 8px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
  color: inherit;
}
.feature-card img {
  width: 92px;
  height: 76px;
  object-fit: cover;
}
.feature-card h3 {
  font-size: 1.28rem;
  margin: 0 0 4px;
  color: var(--navy);
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.feature-card:hover { border-color: var(--champagne); color: inherit; }

/* Sections */
.section { padding: 96px 0; }
.section.ice { background: var(--linen); }
.section.navy { background: var(--navy); color: rgba(255,255,255,.8); }
.section.navy h2, .section.navy h3, .section.navy h4 { color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--champagne);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--champagne);
}
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.split img, .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media {
  overflow: hidden;
  min-height: 440px;
  background: var(--linen-2);
}
.media img { height: 500px; transition: transform 1.1s ease; }
.media:hover img { transform: scale(1.04); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 13px 26px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}
.btn:hover { background: var(--navy); color: var(--white); }
.btn.light { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn.light:hover { background: var(--white); color: var(--ink); }
.btn.gold { border-color: var(--champagne); color: var(--ink); background: var(--champagne); }
.btn.gold:hover { background: var(--champagne-2); }

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.icon-card {
  padding: 36px 28px 32px;
  background: var(--white);
  border: 1px solid var(--line);
}
.icon-card .ico {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--champagne);
  margin-bottom: 18px;
  line-height: 1;
}
.icon-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.icon-card p { color: var(--muted); margin: 0; }

/* Full-bleed split bands — equal halves, no empty left column */
.bleed-band,
.contact-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.bleed-band { background: var(--linen); }
.bleed-band .copy {
  padding: 88px clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  max-width: none;
}
.bleed-band .band-media { min-height: 360px; }
.bleed-band .band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.contact-band { background: var(--navy); }
.contact-band .contact-info {
  padding: 80px clamp(24px, 5vw, 72px);
  color: rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-band .map-wrap { min-height: 420px; }
.contact-info h2 { color: var(--white); }
.contact-info .meta-line, .contact-info a { color: rgba(255,255,255,.78); }
.contact-info .btn { margin-top: 12px; }
.map-wrap iframe, .map-wrap { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.35) contrast(1.05); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.contact-layout .map-wrap { min-height: 100%; }
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-box {
  background: var(--ink);
  color: rgba(255,255,255,.8);
  padding: 36px 32px;
  height: 100%;
}
.contact-box h3, .contact-box h4 { color: var(--white); margin-bottom: 8px; }
.contact-box a { color: var(--gold-3); }
.contact-box a:hover { color: var(--white); }
.sep { height: 1px; background: rgba(196,165,116,.28); margin: 14px 0 18px; }
.meta-line { margin: 0 0 10px; }

/* Product cards — image then caption */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  overflow: hidden;
  background: transparent;
  color: inherit;
  display: block;
}
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--linen-2);
  transition: transform .8s ease;
}
.card:hover img { transform: scale(1.04); }
.card .body {
  padding: 16px 2px 4px;
}
.card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 0 0 4px;
}
.card p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}
.card:hover h3 { color: var(--champagne); }

.intro {
  max-width: 640px;
  margin-bottom: 40px;
  color: var(--muted);
}

.prose { max-width: 760px; }
.prose.wide { max-width: 880px; }
.prose h2, .prose h3, .prose h4 { margin-top: 1.5em; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 8px;
}
.gallery a, .gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: var(--linen-2);
}
.gallery a { overflow: hidden; }
.gallery a img { transition: transform .7s ease; }
.gallery a:hover img { transform: scale(1.05); }

.values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 36px 0;
}
.value {
  background: var(--navy);
  color: var(--white);
  padding: 26px 14px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 32px;
  text-align: left;
}
.why-grid h3 { color: var(--white); font-size: 1.35rem; }
.why-grid p { color: rgba(255,255,255,.68); margin: 0; font-size: 15px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 0; }

/* Forms */
form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, textarea, select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 2px;
  font: inherit;
  color: var(--dark);
  outline: none;
}
.section.ice input, .section.ice textarea { border-bottom-color: #d8d0c4; }
input:focus, textarea:focus { border-bottom-color: var(--champagne); }
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); }
.site-footer > .container { padding-top: 64px; padding-bottom: 40px; }
.footer-logo { display: inline-block; margin-bottom: 36px; }
.footer-logo img {
  height: 56px;
  mix-blend-mode: lighten;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
}
.footer-grid .lbl {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-links a { color: rgba(255,255,255,.62); font-size: 14px; }
.footer-links a:hover { color: var(--gold-3); }
.footer-grid .meta-line { margin: 0 0 8px; }
.footer-grid .meta-line a { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 18px 16px;
  font-size: 12px;
  letter-spacing: .06em;
}

.wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1f8a4c;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.wa:hover { color: #fff; transform: translateY(-2px); }
.to-top {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 60;
  width: 42px; height: 42px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(196,165,116,.4);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.to-top.show { opacity: 1; pointer-events: auto; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(11,11,11,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; }
.lightbox button {
  position: absolute; top: 18px; right: 22px;
  background: transparent; border: 0; color: #fff; font-size: 36px; cursor: pointer;
}

@media (max-width: 1100px) {
  .split, .split.reverse, .why-grid, .card-grid, .contact-layout, .office-grid, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values { grid-template-columns: repeat(3, 1fr); }
  .bleed-band, .contact-band {
    grid-template-columns: 1fr;
  }
  .bleed-band .copy,
  .contact-band .contact-info {
    padding: 64px 24px;
  }
}
@media (max-width: 860px) {
  .burger { display: block; }
  .header-cta { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(11,11,11,.98);
    flex-direction: column;
    padding: 12px 24px 28px;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .header-bar { position: relative; }
  .slider { min-height: 72vh; }
  .slide-copy { padding: 12vh 0 100px; }
  .feature-grid, .split, .split.reverse, .icon-grid, .card-grid, .why-grid, .values, .form-row, .gallery, .footer-grid, .contact-layout, .office-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  .logo-box img { height: 44px; }
  .media, .media img { min-height: 260px; height: 300px; }
  .page-hero { min-height: 220px; }
  .page-hero .container { padding: 48px 0 36px; }
}
