:root {
  --navy: #0d2b3e;
  --navy-deep: #081e2c;
  --brass: #c9a35c;
  --sand: #f4efe6;
  --card: #fdfcf8;
  --muted: #5d6b75;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--sand);
  color: var(--navy-deep);
  line-height: 1.65;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, .brand-text { font-family: 'Marcellus', serif; font-weight: 400; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(8,30,44,.85);
  backdrop-filter: blur(10px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--sand); }
.brand-mark { width: 34px; height: 34px; color: var(--brass); }
.brand-text { font-size: 1.05rem; letter-spacing: .06em; display: flex; flex-direction: column; line-height: 1.15; text-transform: uppercase; }
.brand-text em { font-style: normal; font-size: .72rem; letter-spacing: .34em; color: var(--brass); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--sand); text-decoration: none; font-size: .92rem; font-weight: 500; opacity: .9; }
.nav-links a:hover { color: var(--brass); opacity: 1; }
.lang-toggle {
  border: 1px solid var(--brass); background: transparent; color: var(--brass);
  font-weight: 700; border-radius: 999px; padding: 5px 14px; cursor: pointer; font-size: .8rem;
}
.lang-toggle:hover { background: var(--brass); color: var(--navy-deep); }

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,30,44,.55) 0%, rgba(8,30,44,.28) 45%, rgba(8,30,44,.75) 100%); }
.hero-content { position: relative; padding-top: 120px; padding-bottom: 80px; max-width: 720px; }
.hero-kicker { letter-spacing: .26em; text-transform: uppercase; font-size: .78rem; color: var(--brass); margin-bottom: 18px; font-weight: 600; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); line-height: 1.08; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
.hero-sub { font-size: 1.12rem; max-width: 540px; opacity: .94; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 13px 26px; border-radius: 999px; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-brass { background: linear-gradient(145deg, var(--brass), #a8813f); color: var(--navy-deep); box-shadow: 0 8px 24px rgba(201,163,92,.35); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.75); color: #fff; }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.hero-scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); font-size: 2rem; opacity: .7; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* SECTIONS */
.section { padding: 96px 0; }
.kicker { letter-spacing: .24em; text-transform: uppercase; font-size: .75rem; font-weight: 700; color: #8a6d3b; margin-bottom: 10px; }
.kicker-brass { color: var(--brass); }
.section-sub { color: var(--muted); max-width: 620px; margin-bottom: 44px; }
.section-navy { background: var(--navy); color: var(--sand); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: var(--card); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(13,43,62,.09); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(13,43,62,.16); }
.card-img { height: 210px; background-size: cover; background-position: center; }
.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p { font-size: .93rem; color: var(--muted); }

/* BAY */
.story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.story-grid p { opacity: .9; margin-bottom: 16px; }
.story-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fact {
  background: rgba(201,163,92,.08); border: 1px solid rgba(201,163,92,.3);
  border-radius: 16px; padding: 22px; text-align: center;
}
.fact strong { display: block; font-family: 'Marcellus', serif; font-size: 1.8rem; color: var(--brass); }
.fact span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }

/* CONTACT */
.visit-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
.visit-list { list-style: none; margin: 22px 0 30px; }
.visit-list li { padding: 10px 0; border-bottom: 1px dashed rgba(13,43,62,.2); }
.visit-list a { color: var(--navy); }
.visit-quote {
  background: var(--card); border-left: 4px solid var(--brass);
  border-radius: 0 18px 18px 0; padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(13,43,62,.09);
}
.visit-quote blockquote { font-family: 'Marcellus', serif; font-size: 1.3rem; line-height: 1.5; margin-bottom: 14px; }
.visit-quote cite { font-style: normal; font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* FOOTER */
.footer { background: var(--navy-deep); color: rgba(244,239,230,.75); padding: 30px 0; font-size: .85rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer a { color: var(--brass); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-links { gap: 16px; }
  .nav-links a { display: none; }
  .nav-links .lang-toggle { display: inline-block; }
  .section { padding: 70px 0; }
}
