:root {
  --paper: #ece9e2;
  --paper-soft: #f8f5ef;
  --ink: #171717;
  --muted: #67645e;
  --line: rgba(23, 23, 23, .12);
  --charcoal: #3b3d42;
  --gold: #b99d7a;
  --gold-deep: #8c7358;
  --white: #fff;
  --shadow: 0 24px 70px rgba(20, 20, 20, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.34) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(242, 238, 230, .94);
  border-bottom: 1px solid rgba(185,157,122,.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 950;
  color: #242424;
}
.brand img {
  width: 82px;
  height: 64px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 8px 14px rgba(140,115,88,.18));
}
.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: 0;
}
.actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.actions a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border: 1px solid rgba(111,90,67,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: #34312c;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 8px 22px rgba(20,20,20,.05);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.actions a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(20,20,20,.08);
}
.actions .call {
  background: linear-gradient(135deg, #34363b, #1f2024);
  color: var(--white);
  border-color: rgba(255,255,255,.12);
}

.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}
.hero-copy { max-width: 560px; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
}
h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 88px);
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 58px);
}
h3 { margin-bottom: 10px; font-size: 24px; }
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions,
.button-row,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions { margin: 24px 0 24px; }
.contact-strip a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 950;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(20,20,20,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(20,20,20,.12);
}
.btn.primary {
  background: linear-gradient(135deg, #c8ad86, #927357);
  color: #171717;
}
.btn.secondary {
  background: linear-gradient(135deg, #3b3d42, #222327);
  color: var(--white);
}
.btn.outline {
  border-color: rgba(111,90,67,.38);
  color: #2d2924;
  background: rgba(255,255,255,.64);
  backdrop-filter: blur(10px);
}

.hero-booklet {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 18px;
  align-items: center;
}
.hero-booklet img {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(23,23,23,.08);
  box-shadow: 0 18px 54px rgba(20, 20, 20, .14);
}
.hero-booklet .cover {
  transform: rotate(-2deg);
}
.hero-booklet .render {
  transform: translateY(34px) rotate(1.2deg);
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  text-align: left;
}
.section-heading p:not(.eyebrow) { color: var(--muted); }

.video-section,
.booklet-section,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}
.video-first {
  width: 100%;
  min-height: calc(100svh - 78px);
  padding: 0;
  background: #111;
}
.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: calc(100svh - 78px);
  height: calc(100svh - 78px);
  background: #111;
  border: 0;
  box-shadow: none;
}
.project-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #111;
  object-fit: cover;
}
.video-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 12px;
  justify-items: center;
  color: var(--white);
  background: transparent;
  text-shadow: 0 2px 18px rgba(0,0,0,.72);
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.video-loader.hidden {
  visibility: hidden;
  opacity: 0;
}
.video-loader span {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255,255,255,.38);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.video-loader p {
  margin: 0;
  font-weight: 950;
}
.video-section .button-row,
.booklet-section .button-row,
.final-cta .button-row {
  justify-content: center;
  margin-top: 22px;
}

.booklet-section {
  width: 100%;
  padding: clamp(54px, 7vw, 88px) clamp(14px, 3vw, 48px);
  background: rgba(248, 245, 239, .72);
}
.booklet-section .button-row {
  justify-content: flex-start;
  width: min(1440px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.booklet-pages {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  margin: 38px auto 0;
  width: min(1440px, 100%);
}
.booklet-pages figure {
  margin: 0;
  padding: clamp(6px, .9vw, 14px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 58px rgba(20, 20, 20, .14);
}
.booklet-pages img {
  width: 100%;
  height: auto;
}

.final-cta {
  width: min(1180px, calc(100% - 32px));
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: left;
}
.final-cta h2 {
  max-width: 900px;
}
.final-cta .button-row {
  justify-content: flex-start;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 52px);
  background: var(--charcoal);
  color: var(--white);
  font-weight: 850;
}
.footer p { margin: 0; }
.footer a { color: #f0d7b8; }
.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 13px 22px;
  background: linear-gradient(135deg, #22a866, #15874e);
  color: var(--white);
  font-weight: 950;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(31, 157, 88, .35);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { max-width: none; }
  .hero-booklet { grid-template-columns: 1fr 1fr; }
  .hero-booklet .render { transform: translateY(18px) rotate(1.2deg); }
}

@media (max-width: 680px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 112px;
    padding: 10px 12px;
  }
  .actions {
    justify-content: flex-start;
    gap: 6px;
  }
  .actions a {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .brand { gap: 12px; }
  .brand img {
    width: 74px;
    height: 56px;
  }
  .brand span { font-size: 18px; }
  .hero,
  .final-cta {
    width: min(100% - 24px, 1180px);
  }
  .video-section { width: 100%; }
  .hero { padding: 38px 0 48px; }
  h1 { font-size: clamp(38px, 13vw, 58px); }
  h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.02;
  }
  .lead { font-size: 17px; }
  .hero-booklet {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-booklet .cover,
  .hero-booklet .render {
    transform: none;
  }
  .booklet-pages {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section-heading,
  .booklet-section .button-row {
    width: 100%;
  }
  .booklet-section {
    padding-top: 42px;
    padding-bottom: 54px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .button-row,
  .hero-actions,
  .contact-strip {
    display: grid;
  }
  .btn,
  .contact-strip a {
    width: 100%;
  }
  .video-frame {
    min-height: calc(100svh - 112px);
    height: calc(100svh - 112px);
  }
  .float-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
    justify-content: center;
    border-radius: 14px;
  }
  .footer {
    display: block;
    padding-bottom: 78px;
  }
  .footer a {
    display: inline-block;
    margin-top: 10px;
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
