
:root {
  --bg: #f7f2eb;
  --bg-2: #efe5d9;
  --card: #fffaf5;
  --ink: #2d221c;
  --muted: #72655b;
  --line: rgba(45, 34, 28, 0.12);
  --brown: #6c4c3c;
  --bronze: #9c7055;
  --shadow: 0 18px 44px rgba(56, 39, 29, 0.08);
  --radius: 28px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }
::selection { background: var(--brown); color: white; }

.page-loader {
  position: fixed; inset: 0; display: grid; place-items: center;
  background: #201713; color: #f6efe6; z-index: 300;
  transition: transform 1s var(--ease) .15s;
}
.page-loader span { font-size: 11px; letter-spacing: .32em; }
body.loaded .page-loader { transform: translateY(-100%); }

.site-header {
  position: sticky; top: 0; z-index: 100; 
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 98px; padding: 0 4vw;
  background: rgba(247,242,235,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .35s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(47,34,28,.05); }
.brand { width: 260px; max-width: 38vw; }
.brand img { width: 100%; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  font-size: 12px; text-transform: uppercase; letter-spacing: .18em; position: relative; padding: 8px 0;
}
.desktop-nav a::after, .contact-button::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .35s var(--ease);
}
.desktop-nav a:hover::after, .contact-button:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.contact-button {
  position: relative; font-size: 12px; text-transform: uppercase; letter-spacing: .18em; padding: 8px 0;
}
.menu-toggle {
  display: none; border: 0; background: transparent; padding: 0; width: 48px; height: 48px; position: relative; cursor: pointer;
}
.menu-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink); transition: .35s var(--ease); }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 28px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 98px 0 auto 0; background: rgba(247,242,235,.98); z-index: 95;
  padding: 28px 6vw 36px; border-bottom: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(-14px); transition: .4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: "Cormorant Garamond", serif; font-size: clamp(40px, 10vw, 66px); line-height: .96;
  border-bottom: 1px solid var(--line); padding: 10px 0 12px;
}
.mobile-contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.mobile-contact-links a { font-size: 13px; color: var(--muted); }

main { overflow: clip; }
.section-pad { padding: 120px 6vw; }
.eyebrow { margin: 0 0 20px; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; font-weight: 500; color: var(--bronze); }
.eyebrow.dark { color: var(--brown); }
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; margin: 0; letter-spacing: -.04em;
}
h1 { font-size: clamp(58px, 7vw, 108px); line-height: .9; }
h2 { font-size: clamp(46px, 5.4vw, 84px); line-height: .94; }
h1 em, h2 em { font-style: italic; font-weight: 400; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 42px; align-items: end; margin-bottom: 42px; }
.section-head.narrow { grid-template-columns: 1fr; max-width: 980px; }
.section-text, .section-note, .hero-text, .service-body p, .process-card p {
  color: var(--muted); line-height: 1.8; font-size: 15px;
}
.section-note { margin: 0 0 0 auto; max-width: 420px; }

.hero {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px; align-items: center;
  padding: 56px 6vw 74px;
}
.hero-copy { padding-right: 1vw; }
.hero-text { max-width: 560px; margin: 28px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
.primary-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 28px;
  border-radius: 999px; background: linear-gradient(135deg, var(--brown), var(--bronze)); color: #fff;
  font-size: 12px; text-transform: uppercase; letter-spacing: .18em; box-shadow: var(--shadow);
}
.primary-button.light { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(10px); }
.text-link { display: inline-flex; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(4px,-4px); }
.hero-highlights {
  display: flex; gap: 14px; flex-wrap: wrap; list-style: none; padding: 0; margin: 36px 0 0;
}
.hero-highlights li {
  border: 1px solid var(--line); background: rgba(255,255,255,.56); border-radius: 999px; padding: 11px 16px;
  font-size: 12px; color: var(--ink);
}
.hero-media { position: relative; }
.hero-image-wrap {
  position: relative; overflow: hidden; border-radius: 34px; box-shadow: 0 28px 70px rgba(66, 47, 34, 0.12); aspect-ratio: 4 / 5;
}
.hero-image-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(34,23,17,.10));
}
.hero-image-wrap img { height: 110%; object-fit: cover; object-position: center; transform: scale(1.06); }

.brand-strip {
  background: #241a15; color: #f0e7de; overflow: hidden; border-block: 1px solid rgba(255,255,255,.06);
}
.brand-strip-track {
  width: max-content; display: flex; align-items: center; gap: 26px; padding: 17px 0; animation: marquee 28s linear infinite;
}
.brand-strip span, .brand-strip i { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }
.brand-strip i { color: var(--bronze); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.about-section { border-bottom: 1px solid var(--line); }
.services-section { background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,0)); }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service-card {
  background: var(--card); border: 1px solid rgba(108,76,60,.08); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow);
}
.service-media { aspect-ratio: 4 / 4.6; overflow: hidden; }
.service-media img { height: 100%; object-fit: cover; transition: transform .85s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.04); }
.service-body { padding: 20px 20px 24px; }
.service-body span, .process-card span {
  display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%;
  background: rgba(156,112,85,.10); color: var(--brown); font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.service-body h3, .process-card h3 {
  font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: 34px; margin: 0 0 10px;
}

.gallery-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; align-items: start;
}
.gallery-card {
  margin: 0; overflow: hidden; border-radius: 28px; background: #ddd0c2; box-shadow: var(--shadow);
}
.gallery-card.large { grid-row: span 2; }
.gallery-card.tall { min-height: 100%; }
.gallery-card img { height: 100%; min-height: 340px; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-card:hover img { transform: scale(1.03); }

.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.process-card {
  background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 24px; padding: 28px; min-height: 250px;
}

.cta-section {
  padding: 40px 6vw 0;
}
.cta-inner {
  position: relative; overflow: hidden; border-radius: 34px; padding: 80px 6vw; color: white;
  background: linear-gradient(130deg, rgba(92,59,40,.92), rgba(150,103,74,.86)), url('assets/detail-table.webp') center/cover no-repeat;
}
.cta-inner::after {
  content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top left, rgba(255,255,255,.12), transparent 40%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { max-width: 720px; margin-bottom: 28px; }
.cta-inner .eyebrow { color: rgba(255,255,255,.72); }

.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.contact-box {
  display: block; padding: 28px; border-radius: 24px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-box small { display: block; color: var(--muted); margin-bottom: 8px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.contact-box strong { font-size: clamp(20px, 2.4vw, 34px); font-weight: 500; font-family: "Cormorant Garamond", serif; }

.site-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 6vw 34px; border-top: 1px solid var(--line); margin-top: 24px; color: var(--muted); font-size: 12px;
}
.footer-left { font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); }
.footer-right { display: flex; align-items: center; gap: 16px; }

.reveal, .reveal-card, .reveal-image {
  opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal.visible, .reveal-card.visible, .reveal-image.visible { opacity: 1; transform: none; }
.reveal-image { clip-path: inset(0 0 14% 0 round 28px); transition: opacity .8s var(--ease), clip-path 1s var(--ease); }
.reveal-image.visible { clip-path: inset(0 round 28px); }

@media (max-width: 1100px) {
  .section-head, .hero { grid-template-columns: 1fr; }
  .section-note { margin-left: 0; }
  .service-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card.large { grid-row: auto; }
}

@media (max-width: 860px) {
  .desktop-nav, .contact-button { display: none; }
  .menu-toggle { display: block; }
  .site-header { grid-template-columns: 1fr auto; height: 88px; }
  .brand { width: 210px; }
  .hero { padding-top: 24px; }
  .hero-image-wrap { aspect-ratio: 4 / 4.6; }
  .hero-highlights { gap: 10px; }
  .hero-highlights li { font-size: 11px; }
  .service-grid, .process-grid, .contact-grid, .gallery-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 92px 5vw; }
  .cta-inner { padding: 60px 7vw; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(44px, 12vw, 68px); }
  h2 { font-size: clamp(38px, 10vw, 58px); }
  .brand { width: 180px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-box strong { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
