:root {
  --deep: #0f2a33;       /* deep teal/sea */
  --tide: #1d4d52;       /* mid teal */
  --foam: #f3f0e7;       /* warm sand-white */
  --sand: #e3dcc9;       /* sand */
  --rust: #c8643c;       /* warm copper accent */
  --salt: #8fb0ab;       /* muted seafoam */
  --ink: #0b1b21;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--foam);
  color: var(--deep);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* NAV */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243,240,231,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Georgia', serif; font-size: 1.35rem; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.5rem;
}
.logo .mark { color: var(--rust); font-size: 1.6rem; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em;
  padding-bottom: 3px; border-bottom: 2px solid transparent; transition: 0.2s;
}
.nav-links a:hover, .nav-links a.active { border-color: var(--rust); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--deep); }

/* HERO */
.hero {
  background: var(--deep); color: var(--foam);
  padding: 6rem 0 6.5rem; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background:
    radial-gradient(circle at 20px -10px, transparent 28px, var(--foam) 29px) repeat-x;
  background-size: 60px 60px;
}
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem;
  color: var(--salt); margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 16ch; margin-bottom: 1.25rem; }
.hero p { max-width: 46ch; color: var(--sand); font-size: 1.08rem; }
.hero .actions { margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 0.85rem 1.6rem; border-radius: 2px;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; transition: 0.2s;
  cursor: pointer; border: 1px solid var(--rust);
}
.btn-primary { background: var(--rust); color: var(--foam); }
.btn-primary:hover { background: transparent; color: var(--rust); }
.btn-ghost { border-color: var(--salt); color: var(--foam); }
.btn-ghost:hover { background: var(--salt); color: var(--deep); }

/* SECTIONS */
section { padding: 4.5rem 0; }
.section-label {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem;
  color: var(--rust); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }

.card {
  background: #fff; border: 1px solid var(--sand); padding: 1.75rem; border-radius: 3px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card .num {
  font-family: 'Georgia', serif; color: var(--rust); font-size: 0.9rem; letter-spacing: 0.1em;
  display: block; margin-bottom: 0.75rem;
}

.lead { font-size: 1.15rem; max-width: 60ch; color: var(--tide); }

/* MENU */
.menu-group { margin-bottom: 2.5rem; }
.menu-group h3 {
  font-size: 1.4rem; border-bottom: 1px solid var(--sand); padding-bottom: 0.5rem;
  margin-bottom: 1rem; display: flex; align-items: baseline; gap: 0.6rem;
}
.menu-group h3 span { font-family: sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--salt); }
.menu-item {
  display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0;
  border-bottom: 1px dotted var(--sand);
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name { font-weight: 600; }
.menu-item .desc { color: var(--tide); font-size: 0.9rem; }
.menu-item .price { color: var(--rust); font-variant-numeric: tabular-nums; white-space: nowrap; font-weight: 600; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.gallery .tile {
  aspect-ratio: 1; border-radius: 3px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 1rem; color: var(--foam);
}
.gallery .tile span { font-size: 0.8rem; letter-spacing: 0.08em; position: relative; z-index: 2; }
.gallery .tile::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(15,42,51,0.7)); }
.t1 { background: linear-gradient(135deg, #1d4d52, #0f2a33); }
.t2 { background: linear-gradient(135deg, #c8643c, #8a3f23); }
.t3 { background: linear-gradient(135deg, #8fb0ab, #4a726d); }
.t4 { background: linear-gradient(135deg, #4a726d, #1d4d52); }
.t5 { background: linear-gradient(135deg, #e3dcc9, #b8a878); }
.t6 { background: linear-gradient(135deg, #0f2a33, #1d4d52); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem; color: var(--tide); }
.field input, .field textarea {
  width: 100%; padding: 0.75rem; border: 1px solid var(--sand); border-radius: 3px;
  background: #fff; font: inherit; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--rust); border-color: transparent; }
.info-row { display: flex; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 1px solid var(--sand); }
.info-row strong { min-width: 90px; }

/* FOOTER */
footer {
  background: var(--deep); color: var(--sand); padding: 2.5rem 0; font-size: 0.85rem;
  text-align: center;
}
footer .logo { justify-content: center; color: var(--foam); margin-bottom: 0.75rem; }

/* RESPONSIVE */
@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; background: var(--foam);
    flex-direction: column; padding: 1rem 1.5rem; gap: 1rem; display: none;
    border-bottom: 1px solid var(--sand);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .grid-3, .gallery { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .grid-3, .gallery { grid-template-columns: 1fr; }
}
