:root {
  --bg: #fdf9f3;
  --bg-alt: #eaf1f9;
  --ink: #22344a;
  --ink-soft: #5b6b7f;
  --blue: #3b6ea5;
  --blue-deep: #24455f;
  --accent: #e8896b;
  --line: #e4d9c8;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 640px; margin-left: auto; margin-right: auto; }

/* Floating pill header, sits apart from the page rather than a flush bar */
.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  padding: 0 20px;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 26px;
  background: rgba(253, 249, 243, 0.88);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: 0 14px 34px -18px rgba(36,69,95,0.35);
  border: 1px solid rgba(228,217,200,0.8);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 78px;
  width: 78px;
  display: block;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav a:hover, .nav a.active { color: var(--blue); }
.nav a.nav-cta {
  color: #fff;
  background: var(--blue-deep);
  padding: 9px 18px;
  border-radius: 30px;
}
.nav a.nav-cta:hover { background: var(--blue); color: #fff; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(36,69,95,0.45); }
.btn-outline { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--bg-alt); }
.btn-submit { border: none; cursor: pointer; width: 100%; font-family: inherit; }
.btn-submit:disabled { background: #d8d2c4; color: #9a9284; cursor: not-allowed; }

/* Hero: full width tinted panel, centered content, blob framed photo */
.hero {
  position: relative;
  background: var(--bg-alt);
  padding: 84px 0 0;
  overflow: hidden;
  text-align: center;
}
.hero-blob-a, .hero-blob-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-blob-a { width: 220px; height: 220px; background: #dcebfb; top: 40px; left: 6%; }
.hero-blob-b { width: 140px; height: 140px; background: #f8ded1; bottom: 60px; right: 8%; }

.eyebrow {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}
.hero h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.1;
  color: var(--blue-deep);
  margin: 0 auto 20px;
  max-width: 780px;
}
.hero-sub {
  position: relative;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 32px;
}
.hero-actions { position: relative; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

.hero-photo-wrap { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: min(480px, 80vw);
  aspect-ratio: 1;
  border-radius: 46% 54% 58% 42% / 48% 42% 58% 52%;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(36,69,95,0.4);
  border: 6px solid var(--bg);
}
.hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wave-divider { display: block; width: 100%; line-height: 0; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; height: auto; }

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.section-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--blue-deep);
  margin: 0 0 16px;
}
.section-sub { color: var(--ink-soft); font-size: 16px; max-width: 560px; margin: 0 0 48px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* Teaser strip (home): alternating raised circles instead of a flat grid */
.teaser-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}
.teaser-row a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 36px -18px rgba(36,69,95,0.35);
  border: 5px solid var(--bg);
}
.teaser-row a img { width: 100%; height: 100%; object-fit: cover; display: block; }
.teaser-row a:nth-child(1) { width: 160px; height: 160px; }
.teaser-row a:nth-child(2) { width: 210px; height: 210px; margin-bottom: 20px; }
.teaser-row a:nth-child(3) { width: 160px; height: 160px; }
.teaser-row a:nth-child(4) { width: 190px; height: 190px; }
.teaser-row a img { transition: transform .4s ease; }
.teaser-row a:hover img { transform: scale(1.08); }

/* Menu: tilted sticker cards with a starburst price tag */
.menu-sticker-grid {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.menu-sticker {
  position: relative;
  width: 290px;
  background: var(--bg);
  border-radius: 20px;
  padding: 22px 22px 26px;
  box-shadow: 0 22px 40px -22px rgba(36,69,95,0.3);
  transition: transform .25s ease;
}
.menu-sticker:nth-child(1) { transform: rotate(-3deg); }
.menu-sticker:nth-child(2) { transform: rotate(2deg); }
.menu-sticker:nth-child(3) { transform: rotate(-2deg); }
.menu-sticker:hover { transform: rotate(0deg) translateY(-6px); }

.menu-sticker-photo {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.menu-sticker-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-sticker h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--blue-deep);
  margin: 0 0 10px;
  text-align: center;
}
.menu-price-tag {
  position: absolute;
  top: -16px;
  right: -14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 0 8px 16px -6px rgba(232,137,107,0.6);
  line-height: 1.15;
}
.menu-note { font-size: 13px; color: var(--ink-soft); text-align: center; margin: 0; }
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line);
  padding-bottom: 8px;
}
.menu-list li span:last-child { color: var(--accent); font-weight: 700; }

/* Masonry gallery (menu page) using CSS columns for an organic feel */
.masonry-gallery {
  column-count: 3;
  column-gap: 22px;
}
.masonry-gallery figure {
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  break-inside: avoid;
  box-shadow: 0 18px 34px -20px rgba(36,69,95,0.3);
}
.masonry-gallery img {
  width: 100%; height: auto; display: block;
  transition: transform .4s ease;
}
.masonry-gallery figure:hover img { transform: scale(1.04); }

/* Info circles */
.info-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.info-card { max-width: 220px; }
.info-card .info-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}
.info-card h3 { font-size: 15px; color: var(--blue-deep); margin: 0 0 6px; }
.info-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.info-card a { color: var(--blue); text-decoration: none; font-weight: 600; }

/* Form */
.enquiry-form { display: flex; flex-direction: column; gap: 22px; }
.enquiry-form[hidden] { display: none; }
.hidden-field { display: none; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13.5px; color: var(--ink-soft); font-weight: 500; }
.field .optional { color: #b3ab9a; }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,110,165,0.12);
}
.field textarea { resize: vertical; }
.form-success { padding: 40px 0; text-align: center; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--blue-deep); margin: 0 0 8px; }
.form-success p { color: var(--ink-soft); margin: 0; }

/* Footer: scalloped top edge instead of a flat bar */
.footer-scallop { line-height: 0; }
.footer-scallop svg { display: block; width: 100%; height: auto; }
.site-footer { padding: 8px 0 44px; background: var(--blue-deep); color: #f1eee6; text-align: center; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 22px; display: block; margin-bottom: 14px; }
.footer-links { display: flex; justify-content: center; gap: 22px; }
.footer-links a { color: #f1eee6; text-decoration: none; font-size: 14px; opacity: 0.85; }
.footer-links a:hover { opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
  .masonry-gallery { column-count: 2; }
  .teaser-row a:nth-child(2) { width: 170px; height: 170px; }
  .teaser-row a:nth-child(4) { width: 150px; height: 150px; }
  .nav { gap: 14px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .header-inner { padding: 0 16px; }
  .nav a:not(.nav-cta):first-child { display: none; }
  .masonry-gallery { column-count: 1; }
  .menu-sticker { width: 100%; max-width: 320px; }
  .teaser-row a { width: 120px !important; height: 120px !important; margin-bottom: 0 !important; }
}
