:root {
  --ink: #1C1A16;
  --cream: #F7F4EE;
  --sand: #EDE6D8;
  --gold: #A9772F;
  --gold-deep: #7C591F;
  --line: rgba(28, 26, 22, 0.1);
  --display: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
  --bg-deep: #060f07;
  --bg-mid: #0c1c0e;
  --gold-lt: #fbe9a8;
  --gold-mid: #e8c25e;
  --gold-dk: #8a6516;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 35%, var(--bg-mid) 0%, var(--bg-deep) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader .stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
}

.loader .motes {
  position: absolute;
  inset: -200px;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 15% 20%, rgba(232,194,94,.3), transparent),
    radial-gradient(1.5px 1.5px at 80% 15%, rgba(232,194,94,.22), transparent),
    radial-gradient(1.5px 1.5px at 70% 80%, rgba(232,194,94,.28), transparent),
    radial-gradient(2px 2px at 25% 85%, rgba(232,194,94,.18), transparent);
  animation: drift 9s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0); opacity: .55; }
  to { transform: translateY(-14px); opacity: 1; }
}

.loader .emblem-wrap {
  position: relative;
  width: min(58vw, 300px);
  aspect-ratio: 1/1;
  filter: drop-shadow(0 0 20px rgba(232,194,94,.22));
}

.loader svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.loader .ring {
  transform-origin: 200px 195px;
  animation: spin 16s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader .finial {
  transform-origin: 200px 46px;
  animation: breathe 3.2s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.loader .mono path {
  stroke: url(#goldStroke);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 640;
  stroke-dashoffset: 640;
  animation: draw 2.4s ease forwards;
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.loader .mono .fill {
  fill: url(#goldFill);
  stroke: none;
  opacity: 0;
  animation: fillin .9s ease forwards, glow 2.4s ease-in-out 2.3s infinite;
  animation-delay: 2.2s, 3.3s;
}

@keyframes fillin {
  to { opacity: 1; }
}

@keyframes glow {
  0%, 100% { filter: drop-shadow(0 0 1px rgba(251,233,168,.35)); }
  50% { filter: drop-shadow(0 0 5px rgba(251,233,168,.85)); }
}

.loader .ground-group {
  opacity: 0;
  animation: groupFade .6s ease forwards;
  animation-delay: 1.1s;
}

@keyframes groupFade {
  to { opacity: 1; }
}

.loader .cypress {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: sway 3.6s ease-in-out infinite;
}

.loader .cypress.l2 { animation-delay: .2s; }
.loader .cypress.r1 { animation-delay: .4s; }
.loader .cypress.r2 { animation-delay: .6s; }

@keyframes sway {
  0%, 100% { transform: rotate(-1.2deg); }
  50% { transform: rotate(1.2deg); }
}

.loader .house-roof,
.loader .house-body {
  opacity: 0;
  transform: translateY(6px);
  animation: rise .9s cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: 1.3s;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.loader .hill {
  animation: shimmerHill 4s ease-in-out infinite;
}

.loader .hill.h2 { animation-delay: .6s; }
.loader .hill.h3 { animation-delay: 1.2s; }

@keyframes shimmerHill {
  0%, 100% { opacity: .85; }
  50% { opacity: 1; }
}

.loader .wordmark {
  text-align: center;
  margin-top: 2px;
}

.loader .wordmark h1 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 42px);
  letter-spacing: .14em;
  background: linear-gradient(180deg, var(--gold-lt) 0%, var(--gold-mid) 45%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: sheen 3.5s ease-in-out infinite;
}

@keyframes sheen {
  0% { background-position: 200% 0; }
  100% { background-position: -40% 0; }
}

.loader .wordmark .sub {
  margin: 6px 0 0;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(11px, 2.2vw, 14px);
  letter-spacing: .5em;
  color: var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: .9;
}

.loader .sub .dash {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.loader .rail {
  width: min(60vw, 220px);
  height: 2px;
  background: rgba(232,194,94,.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-top: 6px;
}

.loader .rail::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, transparent, var(--gold-lt), var(--gold-mid), transparent);
  animation: travel 1.6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(251,233,168,.7);
}

@keyframes travel {
  0% { left: -40%; }
  100% { left: 100%; }
}

.loader .status {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .08em;
  color: rgba(255,246,221,.65);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .loader * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(28, 26, 22, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}

.topbar.scrolled {
  background: rgba(28, 26, 22, 0.94);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 40px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 68px;
}

.logo img {
  height: 100%;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 34px;
  flex: 1;
  justify-content: center;
}

.nav a {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a:hover::after {
  width: 100%;
}

.btn-outline {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  padding: 11px 22px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.25s ease;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--ink);
  flex-direction: column;
  padding: 8px 40px 28px;
}

.mobile-nav a {
  color: #fff;
  padding: 14px 0;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .nav, .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: flex; }
}

@media (max-width: 480px) {
  .topbar-inner { padding: 12px 20px; }
  .logo { height: 54px; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.45) 55%, rgba(8,6,4,0.25) 100%),
    linear-gradient(180deg, rgba(8,6,4,0.3) 0%, transparent 40%, rgba(8,6,4,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 40px 120px;
  color: #fff;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(169,119,47,0.65);
}

.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 9vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.hero-title.animated .word {
  transform: translateY(0);
  opacity: 1;
}

.hero-title .line:nth-child(1) .word:nth-child(1) { transition-delay: 0.15s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { transition-delay: 0.25s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { transition-delay: 0.35s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { transition-delay: 0.45s; }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-side {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 220px;
}

.side-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 18px 20px;
  color: #fff;
  transition: transform 0.4s ease, background 0.4s ease;
}

.side-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(-6px);
}

.side-card span {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: var(--gold-mid);
  margin-bottom: 4px;
}

.side-card strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 3px;
}

.side-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade.animated {
  opacity: 1;
  transform: translateY(0);
}

.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow.anim-fade { transition-delay: 0.1s; }
.hero-desc.anim-fade { transition-delay: 0.55s; }
.hero-actions.anim-fade { transition-delay: 0.7s; }
.side-card:nth-child(1) { transition-delay: 0.5s; }
.side-card:nth-child(2) { transition-delay: 0.65s; }
.side-card:nth-child(3) { transition-delay: 0.8s; }

.btn-solid {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 34px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 12px 32px rgba(169, 119, 47, 0.35);
}

.btn-solid:hover {
  background: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(169, 119, 47, 0.45);
}

.btn-ghost {
  display: inline-block;
  color: #fff;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  transition: all 0.35s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 9px;
}

.hero-scroll span {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(9px); }
}

@media (max-width: 1100px) {
  .hero-side { display: none; }
}

@media (max-width: 600px) {
  .hero-content { padding: 120px 24px 100px; }
  .hero-desc { font-size: 15.5px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

.btn-line {
  display: inline-block;
  margin-top: 36px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-line:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.about {
  padding: 160px 0 140px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: center;
}

@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.about-left h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-body p {
  font-size: 16px;
  color: rgba(28,26,22,0.68);
  max-width: 440px;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-right {
  position: relative;
}

.about-img-main {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(28,26,22,0.12);
}

.about-img-main img {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 48%;
  aspect-ratio: 1;
  border: 10px solid var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(28,26,22,0.14);
}

@media (max-width: 600px) {
  .about-img-float {
    right: -10px;
    bottom: -24px;
    width: 46%;
    border-width: 7px;
  }
}

.section-intro {
  text-align: center;
  margin-bottom: 70px;
}

.section-intro h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 50px);
}

.reveal-text {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-title {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  opacity: 0;
  transform: scale(0.96) translateY(30px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-img.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}