/* ============ TOKENS ============ */
:root {
  --indigo: #1c2647;
  --indigo-deep: #141b34;
  --burgundy: #6e2230;
  --gold: #c9a24b;
  --gold-soft: #e8c878;
  --turquoise: #2f8f86;
  --cream: #f5efe1;
  --cream-2: #efe6d3;
  --ink: #2a241d;
  --ink-soft: #5a5145;
  --white: #fffdf8;
  --maxw: 1180px;
  --r: 14px;
  --shadow: 0 24px 60px -28px rgba(20, 27, 52, 0.45);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name, .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .2px;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: .85em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  font-family: 'Manrope', sans-serif;
}
.btn-sm { padding: .6em 1.15em; font-size: .875rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--indigo-deep);
  box-shadow: 0 12px 28px -12px rgba(201, 162, 75, .8);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(201, 162, 75, .9); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); transform: translateY(-3px); }

.link-btn {
  background: none; border: none; cursor: pointer;
  color: var(--gold); font: inherit; padding: 0; text-decoration: underline; text-underline-offset: 3px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(20, 27, 52, .92);
  backdrop-filter: blur(10px);
  padding: 11px 0;
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .7);
}
.nav { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand-logo { filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand-name { font-size: 1.5rem; letter-spacing: 1px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: .95rem; position: relative; opacity: .9;
  transition: opacity .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.08); animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 20%, rgba(28, 38, 71, .55), transparent 60%),
    linear-gradient(180deg, rgba(20, 27, 52, .72) 0%, rgba(20, 27, 52, .45) 45%, rgba(28, 38, 71, .85) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 80px; max-width: 760px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; font-weight: 600;
  color: var(--gold-soft); margin-bottom: 18px;
}
.hero-title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 22px; text-wrap: balance; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 600px; opacity: .92; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
}
.scroll-dot {
  position: absolute; left: 50%; top: 10px; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-soft); transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 28px; } 100% { opacity: 0; } }

/* ============ SECTIONS ============ */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.kicker {
  text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 700;
  color: var(--burgundy); margin-bottom: 14px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--indigo); margin-bottom: 16px; }
.section-desc { color: var(--ink-soft); font-size: 1.05rem; }

/* ============ ABOUT ============ */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.lead { font-size: 1.18rem; color: var(--ink); margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.about-list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.about-list li::before {
  content: '✦'; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 1.1rem;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--r); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; left: -22px; bottom: 28px; background: var(--indigo); color: var(--white);
  border: 1px solid var(--gold); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 2px;
}
.badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-soft); line-height: 1; }
.badge-label { font-size: .82rem; opacity: .9; }

/* ornament divider */
.ornament {
  height: 40px; margin-top: 40px;
  background-image: radial-gradient(circle, var(--gold) 2px, transparent 2.5px);
  background-size: 26px 26px; background-position: center; opacity: .5;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}

/* ============ MASTER ============ */
.master { background: linear-gradient(180deg, var(--indigo) 0%, var(--indigo-deep) 100%); color: var(--white); }
.masters { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.master-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,162,75,.25); border-radius: var(--r);
  overflow: hidden; display: grid; grid-template-columns: 260px 1fr; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.master-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -26px rgba(0,0,0,.45); }
.master-media { overflow: hidden; }
.master-media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 2/3; object-position: top center; }
.master-card:first-child .master-media img { transform: scale(1); }
.master-card:last-child .master-media img { transform: scale(1); }
@media (max-width: 920px) {
  .master-card:last-child .master-media img { object-position: top center; }
}
.master-text { padding: 28px 30px 30px; display: flex; flex-direction: column; }
.master .kicker { color: var(--gold-soft); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.master .section-title { color: var(--white); }
.master .section-desc { color: rgba(245, 239, 225, .88); }
.master-name { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--white); margin: 6px 0 10px; }
.master-text .lead { color: var(--gold-soft); font-size: 1rem; margin-bottom: 10px; }
.master-text p { color: rgba(245, 239, 225, .82); font-size: .92rem; line-height: 1.6; margin-bottom: 12px; }
.master-quote {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem;
  color: var(--gold-soft); border-left: 2px solid var(--gold); padding-left: 16px; margin: 18px 0 22px; line-height: 1.5;
}
.master-text .btn { margin-top: auto; align-self: flex-start; }

/* ============ SERVICES ============ */
.services { background: var(--cream-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(28, 38, 71, .06);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -26px rgba(20,27,52,.5); }
.card-img { height: 200px; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.card:hover .card-img { transform: scale(1.06); }
.card h3 { font-size: 1.3rem; color: var(--indigo); padding: 22px 24px 8px; }
.card p { color: var(--ink-soft); padding: 0 24px 26px; font-size: .96rem; }

/* ============ WHY ============ */
.why { background: var(--burgundy); color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { border-top: 2px solid var(--gold); padding-top: 22px; }
.why-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold-soft); opacity: .8; }
.why-item h3 { font-size: 1.25rem; margin: 8px 0 10px; color: var(--white); }
.why-item p { color: rgba(245, 239, 225, .82); font-size: .95rem; }

/* ============ REVIEWS ============ */
.reviews { background: var(--cream); }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.review {
  background: var(--white); border-radius: var(--r); padding: 34px; box-shadow: var(--shadow);
  border: 1px solid rgba(28,38,71,.06); position: relative;
}
.review::before {
  content: '\201C'; position: absolute; top: 6px; right: 22px; font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold); opacity: .25; line-height: 1;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 14px; }
.review blockquote { font-size: 1.1rem; color: var(--ink); margin-bottom: 18px; }
.review figcaption { color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.review-note { text-align: center; margin-top: 34px; color: var(--ink-soft); }
.review-note a { color: var(--burgundy); font-weight: 600; }

/* ============ CONTACTS + MAP ============ */
.contacts { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 54px; align-items: center; }
.contact-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.c-ico {
  flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  background: var(--indigo); color: var(--gold-soft); font-size: 1.2rem;
}
.contact-list strong { color: var(--indigo); }
.contact-list a { color: var(--burgundy); font-weight: 600; }
.muted { color: var(--ink-soft); font-size: .88rem; font-weight: 400; }
.contacts-map { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.contacts-map iframe { width: 100%; height: 420px; display: block; border: 0; filter: saturate(1.05); }
.map-link { display: block; text-align: center; padding: 12px; background: var(--indigo); color: var(--gold-soft); font-weight: 600; font-size: .9rem; }
.map-link:hover { background: var(--indigo-deep); }

/* ============ FOOTER ============ */
.site-footer { background: var(--indigo-deep); color: var(--cream); padding: 56px 0 30px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); }
.footer-tag { opacity: .75; font-size: .95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 6px; }
.footer-links a, .footer-links .link-btn { color: var(--gold-soft); font-size: .9rem; opacity: .9; }
.footer-links a:hover { opacity: 1; }
.copyright { text-align: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; opacity: .6; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60;
  max-width: 760px; margin: 0 auto; background: rgba(20, 27, 52, .96); color: var(--cream);
  border: 1px solid var(--gold); border-radius: var(--r); padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  transform: translateY(140%); transition: transform .55s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .9rem; flex: 1; min-width: 240px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn-ghost { border-color: rgba(255,255,255,.4); color: var(--white); }

/* ============ MODALS ============ */
.modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-card {
  background: var(--white); color: var(--ink); border-radius: var(--r); max-width: 560px; width: 100%;
  padding: 40px; position: relative; box-shadow: var(--shadow); max-height: 86vh; overflow-y: auto;
  animation: modalIn .4s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-card h2 { color: var(--indigo); font-size: 1.6rem; margin-bottom: 18px; }
.modal-card p { color: var(--ink-soft); margin-bottom: 14px; font-size: .98rem; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: var(--cream-2); cursor: pointer; font-size: 1rem; color: var(--ink);
  transition: background .3s;
}
.modal-close:hover { background: var(--gold); color: var(--white); }
.modal-overlay { position: fixed; inset: 0; background: rgba(10, 14, 28, .6); backdrop-filter: blur(3px); z-index: 65; }
.modal-overlay[hidden] { display: none; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .about-grid, .masters, .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .master-card { grid-template-columns: 1fr; }
  .master-media img { aspect-ratio: 3/4; max-height: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(20,27,52,.97); padding: 22px 30px; gap: 18px;
  }
}
@media (max-width: 600px) {
  .cards, .review-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 110px; }
  .about-badge { left: 12px; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
