:root {
  --navy: #102b3f;
  --deep-navy: #081b29;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --lobster: #b6402f;
  --wood: #8a542f;
  --sea: #4e7f8d;
  --ink: #18313d;
  --muted: #60727a;
  --line: rgba(16, 43, 63, .14);
  --shadow: 0 18px 50px rgba(8, 27, 41, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-mark { color: var(--lobster); }
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-cta { color: var(--lobster); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(810px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.hero > img, .hero-overlay { position: absolute; inset: 0; height: 100%; }
.hero > img { object-fit: cover; object-position: center 50%; }
.hero-overlay { background: linear-gradient(90deg, rgba(8,27,41,.84) 0%, rgba(8,27,41,.52) 48%, rgba(8,27,41,.08) 78%); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 12vh 7vw 10vh;
}
.eyebrow {
  margin: 0 0 1rem;
  color: #f2d7b8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--lobster); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 { margin-bottom: 1.3rem; font-size: clamp(3rem, 7.4vw, 6.6rem); font-weight: 500; letter-spacing: -.045em; }
h2 { margin-bottom: 1.25rem; color: var(--navy); font-size: clamp(2.2rem, 4.6vw, 4.2rem); font-weight: 500; letter-spacing: -.035em; }
h3 { color: var(--navy); font-size: 1.5rem; }
.hero-copy { max-width: 620px; margin: 0 0 2rem; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: .9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lobster); color: white; }
.button-secondary { border-color: rgba(255,255,255,.8); color: white; background: rgba(255,255,255,.08); }
.button.light { background: var(--cream); color: var(--navy); }

.section { padding: 7rem 7vw; }
.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  background: var(--cream);
}
.story-copy { max-width: 700px; }
.story-copy p:not(.eyebrow) { font-size: 1.12rem; }
.story-photo { margin: 0; }
.story-photo img { aspect-ratio: 4/5; object-fit: cover; object-position: center; border-radius: 220px 220px 18px 18px; box-shadow: var(--shadow); }

.offerings-section { background: var(--paper); }
.section-heading { max-width: 720px; margin-bottom: 3rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 1180px; margin: 0 auto; }
.card { min-height: 290px; padding: 2.2rem; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 30px rgba(8,27,41,.06); }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 2rem; border-radius: 50%; background: var(--cream); color: var(--lobster); font-size: 1.6rem; }
.card p { color: var(--muted); }

.gallery-section { background: #edf2f1; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 340px; gap: 1rem; }
.gallery-item { margin: 0; overflow: hidden; border-radius: 12px; background: #d9e1df; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-wide { grid-column: span 2; }
.gallery-note { color: var(--muted); font-size: .9rem; }

.visit-section {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 7rem 7vw;
  color: white;
  text-align: center;
  background:
    linear-gradient(rgba(8,27,41,.78), rgba(8,27,41,.78)),
    url('images/lobster-girl.jpg') center 42% / cover no-repeat;
}
.visit-panel { max-width: 760px; }
.visit-panel h2 { color: white; }
.visit-panel p { font-size: 1.15rem; }
.small-note { margin-top: 1.25rem; opacity: .75; font-size: .86rem !important; }
.site-footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2.8rem 7vw; background: var(--deep-navy); color: white; }
.site-footer p { margin: .35rem 0 0; color: rgba(255,255,255,.68); }

@media (max-width: 850px) {
  .nav-toggle { display: inline-block; border: 0; background: none; color: var(--navy); font-weight: 700; }
  .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; padding: 1.5rem 5vw 2rem; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .hero { min-height: 730px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(8,27,41,.9) 0%, rgba(8,27,41,.56) 55%, rgba(8,27,41,.1) 100%); }
  .hero-content { padding: 8vh 6vw; }
  .section { padding: 5rem 6vw; }
  .story-section { grid-template-columns: 1fr; }
  .story-photo { max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 560px) {
  h1 { font-size: 3.25rem; }
  .hero-actions .button { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-wide { grid-column: span 1; }
  .story-photo img { border-radius: 160px 160px 16px 16px; }
}
