/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #20242e;
  background: #fbf9f4;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============ PALETTE (luxury) ============ */
:root {
  --navy: #0b1626;
  --navy-2: #101f35;
  --navy-3: #16294a;
  --gold: #c9a227;
  --gold-2: #e0be4f;
  --cream: #fbf9f4;
  --cream-2: #f3eee2;
  --ink: #20242e;
  --muted: #5c6472;
  --line: rgba(201, 162, 39, 0.35);
}

/* ============ TYPO ============ */
.overline {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.sec-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.18;
  color: var(--navy);
  font-weight: 600;
}
.gold-line { width: 74px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 22px 0 26px; border-radius: 2px; }
.gold-line.center { margin-left: auto; margin-right: auto; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.sec-sub { color: var(--muted); font-size: 1.02rem; margin-top: -8px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 4px; font-weight: 700; font-size: 0.94rem;
  letter-spacing: 0.04em; transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  will-change: transform;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #151515;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(201, 162, 39, 0.45); }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.55); color: #fff; background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }
.btn-dark { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-dark:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 17px 42px; font-size: 1.05rem; }

/* ============ HEADER ============ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 18px 0; transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header.scrolled { background: rgba(11, 22, 38, 0.92); backdrop-filter: blur(10px); padding: 10px 0; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 6px; color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.brand-text { font-family: Georgia, 'Times New Roman', serif; font-size: 1.14rem; font-weight: 700; letter-spacing: 0.06em; line-height: 1.05; }
.brand-text small { display: block; font-family: 'Segoe UI', Roboto, sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em; color: var(--gold); text-transform: uppercase; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav-list { display: flex; gap: 30px; }
.nav-link {
  position: relative; color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.05em; padding: 6px 0; transition: color .25s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .3s ease; border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; font-size: 0.88rem; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 1002; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s ease, opacity .25s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8, 15, 28, 0.94) 0%, rgba(10, 20, 38, 0.82) 45%, rgba(10, 20, 38, 0.45) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 150px 24px 110px; max-width: 1180px; }
.hero-overline {
  font-size: 0.82rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 18px;
}
.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 700; line-height: 1.04; letter-spacing: 0.02em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.hero-title span { color: var(--gold); }
.hero-sub { max-width: 560px; font-size: clamp(1rem, 2vw, 1.22rem); color: rgba(255, 255, 255, 0.85); margin: 22px 0 26px; }
.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.rating-score { font-weight: 800; font-size: 1.12rem; }
.rating-count { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.hero-address { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; margin-bottom: 30px; }
.hero-address svg { color: var(--gold); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-bar {
  display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 6px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px; backdrop-filter: blur(8px);
}
.bar-item {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 7px; color: rgba(255, 255, 255, 0.85); font-size: 0.86rem; font-weight: 600;
  transition: background .25s ease, color .25s ease;
}
.bar-item:hover { background: rgba(201, 162, 39, 0.18); color: #fff; }
.bar-item.saved { color: var(--gold); }
.bar-item.saved svg { fill: var(--gold); }
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 44px; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 14px;
  animation: hintFloat 2.2s ease-in-out infinite;
}
.scroll-hint span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--gold); border-radius: 3px; animation: hintDot 2.2s ease-in-out infinite; }
@keyframes hintFloat { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes hintDot { 0% { opacity: 1; } 70% { opacity: 0.2; } 100% { opacity: 1; } }

/* hero entrance fades */
.fade-up { opacity: 0; transform: translateY(34px); animation: fadeUp 1s cubic-bezier(.22,.61,.36,1) forwards; }
.d1 { animation-delay: .15s; } .d2 { animation-delay: .3s; } .d3 { animation-delay: .45s; }
.d4 { animation-delay: .6s; } .d5 { animation-delay: .78s; } .d6 { animation-delay: .95s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============ SECTIONS ============ */
.section { padding: 110px 0; }
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.frame-gold {
  position: absolute; top: -18px; left: -18px; right: 42px; bottom: 42px;
  border: 1px solid var(--line); border-radius: 4px; z-index: 0;
}
.about-img { position: relative; z-index: 1; border-radius: 4px; width: 100%; height: 540px; object-fit: cover; box-shadow: 0 30px 70px rgba(11, 22, 38, 0.28); }
.about-badge {
  position: absolute; z-index: 2; right: -14px; bottom: 34px;
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff; padding: 16px 22px; border-radius: 8px;
  border-left: 3px solid var(--gold); box-shadow: 0 18px 40px rgba(11, 22, 38, 0.4);
}
.about-badge strong { font-family: Georgia, serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.about-badge span { font-size: 0.78rem; line-height: 1.4; color: rgba(255, 255, 255, 0.85); }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-text p strong { color: var(--navy); }
.about-list { margin: 22px 0 30px; display: grid; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; font-size: 0.96rem; }
.check {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(201, 162, 39, 0.14); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.about-sign { border-left: 3px solid var(--gold); padding-left: 18px; }
.sign-name { display: block; font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.sign-role { font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ============ AREAS ============ */
.areas { background: #fff; }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.area-card {
  position: relative; padding: 40px 30px; border: 1px solid #ece7db; border-radius: 6px;
  background: var(--cream); transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
}
.area-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.area-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(11, 22, 38, 0.12); border-color: transparent; }
.area-card:hover::before { transform: scaleX(1); }
.area-icon {
  width: 58px; height: 58px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); margin-bottom: 22px; transition: transform .4s ease, background .4s ease;
}
.area-card:hover .area-icon { transform: rotate(-6deg) scale(1.06); background: var(--gold); color: var(--navy); }
.area-card h3 { font-family: Georgia, serif; font-size: 1.22rem; color: var(--navy); margin-bottom: 10px; }
.area-card p { color: var(--muted); font-size: 0.93rem; }

/* ============ STATS ============ */
.stats { position: relative; padding: 110px 0; color: #fff; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; background-attachment: fixed; }
.stats-shade { position: absolute; inset: 0; background: rgba(8, 15, 28, 0.86); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong {
  display: block; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold);
  line-height: 1.1; margin-bottom: 6px;
}
.stat span { font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }
.stat:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.12); }

/* ============ REVIEWS ============ */
.reviews { background: var(--cream-2); }
.rating-sum { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.rating-big { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.rating-count { color: var(--muted); font-size: 0.9rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: #fff; border-radius: 8px; padding: 36px 30px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(11, 22, 38, 0.07);
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column; gap: 18px;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11, 22, 38, 0.12); }
.review-stars { display: flex; gap: 3px; color: var(--gold); }
.review-text { font-size: 0.98rem; color: #3d4553; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f0ebdf; padding-top: 18px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem;
}
.review-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.review-author span { font-size: 0.8rem; color: var(--muted); }

/* ============ CTA ============ */
.cta { position: relative; padding: 120px 0; text-align: center; color: #fff; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 15, 28, 0.88), rgba(8, 15, 28, 0.78)); }
.cta-inner { position: relative; z-index: 1; max-width: 720px; }
.cta h2 { font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 18px; }
.cta p { color: rgba(255, 255, 255, 0.82); margin-bottom: 34px; font-size: 1.05rem; }

/* ============ CONTACT ============ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: start; }
.contact-info p { color: var(--muted); }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid #ece7db; }
.info-card strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; letter-spacing: 0.04em; }
.info-card p { font-size: 0.95rem; }
.info-card a { color: var(--navy); font-weight: 700; }
.info-card a:hover { color: var(--gold); }
.info-icon {
  flex: none; width: 46px; height: 46px; border-radius: 8px;
  background: var(--navy); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contact-media { position: relative; }
.map-card {
  position: relative; border-radius: 8px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(11, 22, 38, 0.22);
}
.map-card img { width: 100%; height: 460px; object-fit: cover; }
.map-pin {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
  color: var(--gold); filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  animation: pinBounce 2.4s ease-in-out infinite;
}
@keyframes pinBounce { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, -62%); } }
.map-caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(11, 22, 38, 0.88); backdrop-filter: blur(8px);
  color: #fff; padding: 14px 18px; border-radius: 6px; border-left: 3px solid var(--gold);
}
.map-caption strong { display: block; font-size: 0.95rem; }
.map-caption span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 50px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-brand p { margin-top: 18px; font-size: 0.92rem; max-width: 320px; color: rgba(255, 255, 255, 0.6); }
.brand-light { color: #fff; }
.footer-col h4 { color: #fff; font-family: Georgia, serif; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: 0.84rem; color: rgba(255, 255, 255, 0.5); }
.photo-credit { letter-spacing: 0.05em; }

/* ============ MOBILE MENU OVERLAY ============ */
@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0; z-index: 1001;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px;
    background: rgba(8, 15, 28, 0.97);
    backdrop-filter: blur(12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .4s ease, visibility .4s ease;
  }
  .nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: center; gap: 26px; }
  .nav-link { font-family: Georgia, serif; font-size: 1.5rem; color: #fff; opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .4s ease, color .25s ease; }
  .nav.open .nav-link { opacity: 1; transform: translateY(0); }
  .nav.open .nav-link:nth-child(1) { transition-delay: .08s; }
  .nav.open .nav-link:nth-child(2) { transition-delay: .14s; }
  .nav.open .nav-link:nth-child(3) { transition-delay: .20s; }
  .nav.open .nav-link:nth-child(4) { transition-delay: .26s; }
  .nav.open .nav-link:nth-child(5) { transition-delay: .32s; }
  .nav-cta { opacity: 0; transform: translateY(16px); transition: opacity .4s ease .4s, transform .4s ease .4s; }
  .nav.open .nav-cta { opacity: 1; transform: translateY(0); }
  body.menu-open { overflow: hidden; }
  body.menu-open .header { background: transparent; box-shadow: none; }
}

/* ============ SCROLL REVEAL ============ */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.js .reveal:nth-child(2) { transition-delay: .1s; }

/* ============ TOAST ============ */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); z-index: 2000;
  background: var(--navy); color: #fff; padding: 13px 26px; border-radius: 8px;
  border-left: 3px solid var(--gold); font-size: 0.92rem; font-weight: 600;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); white-space: nowrap;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 46px; }
  .about-img { height: 460px; }
}
@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stat:nth-child(2) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-media { max-width: 560px; }
  .hero-inner { padding-top: 130px; }
}
@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .hero-bar { width: 100%; }
  .bar-item { flex: 1 1 auto; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .stats { background-attachment: scroll; }
  .about-badge { right: 8px; bottom: 18px; padding: 12px 16px; }
  .frame-gold { right: 18px; bottom: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .map-card img { height: 340px; }
  .toast { white-space: normal; width: calc(100% - 40px); text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}