:root {
  --paper: #f2f0eb;
  --paper-soft: #fbfaf7;
  --ink: #171717;
  --muted: #66635d;
  --line: rgba(23, 23, 23, .12);
  --charcoal: #2e3034;
  --gold: #c4a16d;
  --gold-deep: #866843;
  --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,.42) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.42) 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 { 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, 240, 235, .94);
  border-bottom: 1px solid rgba(196,161,109,.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 82px;
  height: 64px;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 14px rgba(120,92,50,.16));
}
.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 1000;
  letter-spacing: 0;
  color: #987646;
  background: linear-gradient(110deg, #1f2024 0%, #5f4728 38%, #b98845 68%, #dec184 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 12px 30px rgba(95, 71, 40, .2);
}

.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,.7);
  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,.94);
  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);
}

.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;
}
.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-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: none;
  gap: 8px;
}
.video-controls button {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 24, 24, .82), rgba(134, 104, 67, .82));
  color: var(--white);
  font: inherit;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.video-controls button span {
  display: block;
  line-height: 1;
}

.intro-section,
.booklet-section,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding: clamp(48px, 7vw, 84px) 0;
}
.intro-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.intro-actions {
  justify-content: flex-end;
}

.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: 1;
}
h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 92px);
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 58px);
}
.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.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, #d1b47f, #987646);
  color: #171717;
}
.btn.outline {
  border-color: rgba(111,90,67,.38);
  color: #2d2924;
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(10px);
}

.booklet-section {
  width: 100%;
  padding: clamp(54px, 7vw, 88px) clamp(14px, 3vw, 48px);
  background: rgba(251, 250, 247, .76);
}
.section-heading {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  text-align: left;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
}
.booklet-section .button-row {
  justify-content: flex-start;
  width: min(1440px, 100%);
  margin: 22px auto 0;
}
.booklet-pages {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  width: min(1440px, 100%);
  margin: 38px auto 0;
}
.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 {
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: left;
}
.final-cta h2 {
  max-width: 900px;
}
.final-cta .button-row {
  justify-content: flex-start;
  margin-top: 22px;
}

.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: 780px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 86px;
    padding: 9px 10px;
  }
  .brand { gap: 8px; }
  .actions {
    justify-content: flex-end;
    gap: 5px;
    min-width: 0;
  }
  .actions a {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 11px;
  }
  .brand img {
    width: 88px;
    height: 68px;
  }
  .brand span {
    max-width: 76px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: .92;
  }
  .video-frame {
    min-height: calc(100svh - 86px);
    height: calc(100svh - 86px);
  }
  .video-controls {
    display: flex;
    top: 12px;
    right: 12px;
  }
  .video-controls button {
    width: 52px;
    height: 52px;
    min-height: 52px;
    font-size: 26px;
  }
  .intro-section {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1180px);
    padding: 38px 0 48px;
  }
  .intro-actions,
  .button-row {
    display: grid;
  }
  .btn {
    width: 100%;
  }
  h1 { font-size: clamp(40px, 13vw, 62px); }
  h2 {
    font-size: clamp(30px, 10vw, 44px);
    line-height: 1.02;
  }
  .lead { font-size: 17px; }
  .booklet-pages {
    gap: 18px;
  }
  .section-heading,
  .booklet-section .button-row {
    width: 100%;
  }
  .booklet-section {
    padding-top: 42px;
    padding-bottom: 54px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .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); }
}
