/* ========== DESIGN SYSTEM ========== */
:root {
  --espresso: #1f1a15;
  --ink: #2d241e;
  --terracotta: #b7562e;
  --terracotta-dark: #9c4523;
  --sage: #7f8c76;
  --gold: #c9a24a;
  --cream: #faf5ec;
  --cream-2: #f3ecdd;
  --paper: #fbfaf7;
  --muted: #8a7f70;
  --border: #e8ddc9;
  --white: #ffffff;
  --shadow-soft: 0 10px 40px rgba(31, 26, 21, 0.08);
  --shadow-deep: 0 24px 60px rgba(31, 26, 21, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--espresso);
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--ink); }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.brand-lines { display: flex; flex-direction: column; line-height: 1.1; }
.brand-lines small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--terracotta); }
.nav-cta {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 12px 22px !important;
  border-radius: 999px;
  font-weight: 500;
  transition: background .25s ease, transform .25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terracotta); transform: translateY(-1px); }
.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--espresso); font-size: 1.1rem;
}
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 99;
  padding: 110px 32px 48px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--espresso);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ========== COMMON ========== */
section { padding: 110px 0; }
.section-head {
  max-width: 720px; margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow { justify-content: center; gap: 0; }
.section-head .eyebrow::before { display: none; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--terracotta);
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 500; font-size: 0.98rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: var(--terracotta); color: var(--cream);
  box-shadow: 0 8px 24px rgba(183, 86, 46, 0.25);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }
.btn i { font-size: 0.85rem; }

/* ========== PAGE HERO (non-home pages) ========== */
.page-hero {
  padding: 170px 0 80px;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(201, 162, 74, 0.15), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  text-align: center;
}
.page-hero h1 { max-width: 820px; margin: 0 auto 24px; }
.page-hero h1 span { color: var(--terracotta); font-style: italic; font-weight: 400; }
.page-hero p {
  max-width: 620px; margin: 0 auto;
  color: var(--muted); font-size: 1.15rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--terracotta); }

/* ========== FOOTER ========== */
footer {
  background: var(--espresso);
  color: rgba(250, 245, 236, 0.75);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 56px;
  margin-bottom: 56px;
}
.foot-brand { display: flex; align-items: center; gap: 14px; color: var(--cream); margin-bottom: 20px; }
.foot-brand .brand-mark { background: var(--terracotta); }
.foot-brand .brand-lines { color: var(--cream); font-family: 'Fraunces', serif; font-size: 1.25rem; }
.foot-brand .brand-lines small { color: rgba(250, 245, 236, 0.6); }
.foot-col p { font-size: 0.95rem; line-height: 1.7; color: rgba(250, 245, 236, 0.7); }
.foot-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 22px; font-weight: 600;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { font-size: 0.95rem; color: rgba(250, 245, 236, 0.7); }
.foot-col a:hover { color: var(--gold); }
.foot-col .contact-line {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; margin-bottom: 14px;
  color: rgba(250, 245, 236, 0.75);
}
.foot-col .contact-line i { color: var(--gold); margin-top: 4px; width: 16px; }
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 245, 236, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 0.85rem; color: rgba(250, 245, 236, 0.5);
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(250, 245, 236, 0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream); font-size: 0.95rem;
  transition: all .25s ease;
}
.socials a:hover { background: var(--terracotta); border-color: var(--terracotta); }

/* ========== FADE UP ========== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.final-cta::before { top: -150px; left: -100px; }
.final-cta::after { bottom: -150px; right: -100px; }
.final-cta h2 { color: var(--cream); position: relative; z-index: 2; }
.final-cta h2 span { font-style: italic; font-weight: 400; color: var(--gold); }
.final-cta p { color: rgba(250, 245, 236, 0.85); margin: 20px auto 36px; max-width: 560px; position: relative; z-index: 2; }
.final-cta .btn-row { justify-content: center; position: relative; z-index: 2; }
.final-cta .btn-primary {
  background: var(--cream); color: var(--espresso);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.final-cta .btn-primary:hover { background: var(--paper); }
.final-cta .btn-ghost { border-color: var(--cream); color: var(--cream); }
.final-cta .btn-ghost:hover { background: var(--cream); color: var(--espresso); }

/* ========== HOME: HERO ========== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(201, 162, 74, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 100%, rgba(183, 86, 46, 0.12), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero h1 span { color: var(--terracotta); font-style: italic; font-weight: 400; }
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  margin: 28px 0 40px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-meta { margin-top: 56px; display: flex; gap: 44px; flex-wrap: wrap; }
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--espresso);
}
.hero-meta .label {
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  transform: rotate(1.5deg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31, 26, 21, 0.35) 100%);
}
.hero-float {
  position: absolute;
  bottom: 32px; left: -28px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 14px;
  transform: rotate(-1.5deg);
  max-width: 280px;
}
.hero-float .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--terracotta);
  display: grid; place-items: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.hero-float .text { font-size: 0.88rem; line-height: 1.4; color: var(--ink); }
.hero-float .text strong { color: var(--espresso); }

/* ========== HOME: TRUST STRIP ========== */
.trust { padding: 48px 0; background: var(--espresso); color: var(--cream); }
.trust-inner {
  display: flex; flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; }
.trust-item i { color: var(--gold); font-size: 1.3rem; }

/* ========== HOME: SERVICES ========== */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--terracotta);
}
.service-card .img { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .img img { transform: scale(1.06); }
.service-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 20px; flex: 1; }
.service-link {
  font-size: 0.9rem; font-weight: 500; color: var(--terracotta);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .25s ease;
}
.service-link:hover { gap: 14px; }

/* ========== HOME: PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.process-image {
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.process-image img { width: 100%; height: 100%; object-fit: cover; }
.process-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--espresso);
}
.steps { list-style: none; margin-top: 32px; }
.step { display: flex; gap: 22px; padding: 26px 0; border-top: 1px solid var(--border); }
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem; color: var(--terracotta);
  min-width: 48px; font-weight: 500;
}
.step h4 { font-size: 1.15rem; margin-bottom: 6px; font-weight: 600; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ========== HOME: DESIGN CENTER CALLOUT ========== */
.callout {
  background: linear-gradient(135deg, var(--espresso) 0%, #2d241e 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 72px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: ''; position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.18), transparent 60%);
}
.callout h2 { color: var(--cream); }
.callout h2 span { color: var(--gold); font-style: italic; font-weight: 400; }
.callout p { color: rgba(250, 245, 236, 0.75); margin: 20px 0 32px; font-size: 1.05rem; }
.callout .feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.callout .feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--cream);
}
.callout .feature-list i { color: var(--gold); font-size: 1rem; }
.callout-visual { position: relative; z-index: 2; }
.callout-visual img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

/* ========== HOME: TESTIMONIAL ========== */
.testimonial { background: var(--cream); }
.quote-card { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 6rem; color: var(--terracotta);
  line-height: 0.5; margin-bottom: 20px;
}
.quote-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  color: var(--espresso);
  margin-bottom: 32px;
  font-weight: 400;
}
.quote-attr {
  font-size: 0.9rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}

/* ========== HOME: GALLERY ========== */
.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 56px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 26, 21, 0.55) 100%);
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  opacity: 0; transform: translateY(8px);
  transition: all .4s ease;
  z-index: 2;
}
.gallery-item:hover .label { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-cta { text-align: center; margin-top: 56px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-grid, .process-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .callout { grid-template-columns: 1fr; padding: 48px 40px; }
  .callout-visual { max-width: 420px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 14px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 140px 0 60px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { justify-content: center; text-align: center; }
  .final-cta { padding: 80px 0; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero { padding: 130px 0 70px; }
  .hero-meta { gap: 32px; }
  .hero-meta .num { font-size: 1.8rem; }
  .service-grid { grid-template-columns: 1fr; }
  .callout { padding: 40px 24px; }
  .callout .feature-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .hero-float { left: 8px; right: 8px; max-width: none; }
}
@media (max-width: 480px) {
  .hero-meta { gap: 24px; }
  .hero-meta .stat { min-width: 100px; }
  .trust-item { font-size: 0.88rem; }
  .quote-card blockquote { font-size: 1.2rem; }
}
