@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&family=Playfair+Display:wght@400;700;900&display=swap");

:root {
  --ink: #161616;
  --muted: #595959;
  --line: #d9e3e5;
  --paper: #d6e1e3;
  --sage: #6d787a;
  --sage-dark: #123f35;
  --gold: #8b6f35;
  --charcoal: #161616;
  --white: #ffffff;
  font-family: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px clamp(18px, 4vw, 54px) 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(109, 120, 122, 0.24);
  box-shadow: 0 2px 12px rgba(22, 22, 22, 0.04);
  backdrop-filter: blur(10px);
}

.header-brand-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.brand {
  width: clamp(108px, 13vw, 156px);
}

.brand img,
footer img {
  border-radius: 4px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(18px, 4vw, 42px);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

nav a,
.text-link {
  text-decoration: none;
}

nav a:hover,
.text-link:hover {
  color: var(--sage);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  text-align: center;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(214, 225, 227, 0.96), rgba(214, 225, 227, 0.82) 46%, rgba(214, 225, 227, 0.16)),
    linear-gradient(0deg, rgba(214, 225, 227, 0.84), rgba(214, 225, 227, 0.08) 54%);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 92px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  gap: 4px;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  margin-top: 10px;
  font-size: 0.56em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 16px;
  border: 1px solid rgba(22, 22, 22, 0.18);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 22px rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(5px);
}

.hero-phone,
.hero-address {
  display: block;
  width: 100%;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
}

.hero-phone {
  font-size: 1rem;
}

.hero-address {
  max-width: 520px;
  margin: -4px auto 0;
  font-size: 0.94rem;
}

.hero-phone:hover,
.hero-address:hover {
  color: var(--sage-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: transparent;
  border: 1px solid currentColor;
}

.booking-button {
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(22, 22, 22, 0.3);
}

.booking-button img {
  width: 112px;
  height: 52px;
  object-fit: contain;
}

.button.secondary {
  color: var(--ink);
  border: 1px solid currentColor;
}

.section,
.band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 6vw, 82px);
}

.intro {
  display: block;
  background: var(--white);
}

.intro .section-heading {
  margin-bottom: 28px;
}

.intro p:last-child {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-strip div {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 22px;
  text-align: center;
}

.info-strip div + div {
  border-left: 1px solid var(--line);
}

.info-strip strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.info-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.about {
  background: var(--paper);
}

.about-story {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-story p:last-of-type {
  margin-bottom: 0;
}

.service-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card,
.addon-panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

.menu-card {
  overflow: hidden;
}

.menu-card-wide {
  display: grid;
  align-content: start;
}

.menu-card h3 {
  margin: 0;
  padding: 16px 20px;
  color: var(--ink);
  background: #eef4f5;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.service-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.menu-note {
  margin: 14px 20px 0;
  color: var(--sage);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.4;
}

.tax-note {
  margin: 0;
  padding: 0 20px 14px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-row small {
  display: block;
  margin-top: 3px;
  color: var(--sage);
  font-size: 0.78rem;
}

.price-row,
.package-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.price-row span,
.package-row span {
  color: var(--muted);
  line-height: 1.45;
}

.price-row strong,
.package-row strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.addon-panel {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 30px);
}

.addon-panel h3 {
  margin-bottom: 4px;
}

.addon-panel .menu-note {
  margin: 0 0 18px;
}

.addon-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.addon-photos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.addon-grid span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--sage-dark);
  background: #f7fbfb;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sage);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  color: var(--ink);
  background: var(--white);
}

.contact h2,
.contact p {
  color: var(--ink);
}

.contact-copy .contact-details {
  margin-top: 28px;
  max-width: 430px;
}

.map-panel {
  grid-column: 1 / -1;
  min-height: 360px;
  border: 1px solid var(--line);
  background: #f7fbfb;
}

.map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details p,
.contact-details a:not(.button),
.contact-details address {
  color: var(--ink);
  font-size: 1.08rem;
  font-style: normal;
  line-height: 1.55;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 6vw, 82px);
  border-top: 1px solid rgba(109, 120, 122, 0.24);
  background: var(--paper);
  color: var(--ink);
}

footer img {
  width: 180px;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .info-strip,
  .about-story,
  .contact {
    grid-template-columns: 1fr;
  }

  .info-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-menu {
    grid-template-columns: 1fr;
  }

  .addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .addon-photos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 0;
    align-items: center;
    padding: 34px 20px 26px;
    background: var(--paper);
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .header-brand-row {
    grid-column: 2;
    justify-content: center;
  }

  .brand {
    width: min(74vw, 330px);
  }

  .brand img {
    width: 100%;
  }

  nav {
    grid-column: 1;
    grid-row: 1;
    position: absolute;
    top: calc(100% - 12px);
    left: 20px;
    right: 20px;
    display: none;
    gap: 0;
    width: auto;
    height: auto;
    padding: 10px 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(22, 22, 22, 0.08);
    justify-self: start;
    text-align: left;
  }

  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    gap: 6px;
    align-content: center;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: var(--ink);
  }

  nav a {
    display: block;
    padding: 14px 18px;
    color: var(--ink);
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .nav-open nav {
    display: grid;
  }

  .hero {
    width: calc(100% - 40px);
    min-height: 76vh;
    margin: 22px auto 0;
    align-items: start;
  }

  .hero-content {
    width: min(100%, 340px);
    padding: clamp(54px, 14vw, 84px) 0 42px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(214, 225, 227, 0.92), rgba(214, 225, 227, 0.42) 42%, rgba(214, 225, 227, 0.1)),
      linear-gradient(0deg, rgba(22, 22, 22, 0.08), rgba(22, 22, 22, 0));
  }

  h1 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-title span:nth-child(2) {
    font-size: 0.52em;
  }

  .hero p {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 12px;
  }

  .booking-button img {
    width: 112px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .addon-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .map-panel iframe {
    height: 320px;
  }

  .gallery-grid img:first-child {
    grid-row: span 1;
  }

  footer {
    display: grid;
  }
}
