:root{
  --deep:#071f33;
  --blue:#0f6f8f;
  --blue2:#0a4f68;
  --gold:#c59b54;
  --sand:#f5efe3;
  --paper:#ffffff;
  --text:#14202b;
  --muted:#64748b;
  --line:#e6e8ec;
  --shadow:0 22px 55px rgba(7,31,51,.11);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.55;
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:16px 7vw;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.brand{
  text-decoration:none;
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand strong{
  font-family:Georgia, "Times New Roman", serif;
  font-size:28px;
  letter-spacing:.07em;
  color:var(--deep);
}

.brand span{
  margin-top:6px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--blue);
  font-weight:700;
}

nav{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:var(--deep);
  font-weight:700;
  font-size:15px;
}

.nav-cta{
  padding:10px 16px;
  border-radius:999px;
  background:var(--gold);
  color:#fff;
}

.hero,
.page-hero{
  position:relative;
  min-height:650px;
  display:flex;
  align-items:center;
  padding:90px 7vw;
  overflow:hidden;
  color:#fff;
  background:var(--deep);
}

.page-hero{
  min-height:540px;
}

.hero-bg,
.page-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero::after,
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(7,31,51,.88), rgba(7,31,51,.42)),
    linear-gradient(0deg, rgba(7,31,51,.35), rgba(7,31,51,.08));
}

.hero-content,
.page-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.eyebrow{
  margin:0 0 14px;
  color:var(--gold);
  font-size:13px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
}

h1{
  margin:0;
  font-size:clamp(44px,7vw,84px);
  line-height:.96;
  letter-spacing:-.04em;
}

h2{
  margin:0 0 14px;
  color:var(--deep);
  font-size:32px;
  line-height:1.1;
}

h3{
  margin:0 0 8px;
  color:var(--deep);
  font-size:21px;
}

.lead{
  max-width:760px;
  margin:22px 0 0;
  font-size:22px;
  color:inherit;
  opacity:.94;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 22px;
  border-radius:999px;
  border:1px solid var(--blue);
  text-decoration:none;
  font-weight:800;
  color:var(--deep);
  background:#fff;
}

.btn.primary{
  background:var(--gold);
  color:#fff;
  border-color:var(--gold);
}

.btn.dark{
  background:var(--deep);
  color:#fff;
  border-color:var(--deep);
}

.section{
  padding:72px 7vw;
}

.section.alt{
  background:var(--sand);
}

.section.tight{
  padding-top:32px;
}

.intro-grid,
.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.card{
  padding:30px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}

.card p{
  color:var(--muted);
  margin-bottom:0;
}

.card a{
  color:var(--blue);
  text-decoration:none;
  font-weight:800;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:13px;
  font-weight:800;
}

.menu-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.menu-tabs a{
  text-decoration:none;
  padding:10px 15px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:var(--deep);
  font-weight:800;
}

.dish-grid,
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  margin-top:28px;
}

.dish-card,
.photo-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow);
}

.dish-card img,
.photo-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.dish-card .content,
.photo-card .content{
  padding:18px 20px 22px;
}

.dish-card p,
.photo-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.notice{
  padding:22px;
  border-radius:22px;
  border:1px dashed #cbd5e1;
  background:#f8fafc;
  color:var(--muted);
}

.contact-box{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:start;
}

.contact-panel{
  padding:34px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.contact-panel p{
  margin:9px 0;
  color:var(--muted);
}

.footer{
  padding:30px 7vw;
  background:var(--deep);
  color:#fff;
  text-align:center;
}

.footer p{margin:0}

@media (max-width:900px){
  .site-header{
    position:relative;
    align-items:flex-start;
    flex-direction:column;
  }

  .brand strong{font-size:25px}

  .hero,
  .page-hero{
    min-height:560px;
    padding:70px 7vw;
  }

  .intro-grid,
  .cards,
  .dish-grid,
  .gallery-grid,
  .contact-box{
    grid-template-columns:1fr;
  }

  h1{font-size:46px}
  .lead{font-size:18px}
}

.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  max-width: 700px;
}