:root {
  --cream: #fff8ed;
  --oat: #f3dfbf;
  --butter: #ffd87a;
  --honey: #d89b2b;
  --coral: #e97854;
  --coral-dark: #c84e31;
  --sea: #83c7c7;
  --sage: #d7e4cf;
  --ink: #21312f;
  --espresso: #3b2417;
  --muted: #6c6257;
  --white: #fff;
  --shadow: 0 26px 70px rgba(59, 36, 23, 0.15);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,216,122,0.35), transparent 30%),
    radial-gradient(circle at 95% 2%, rgba(131,199,199,0.28), transparent 26%),
    var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.concept-flag {
  padding: 9px 18px;
  background: var(--espresso);
  color: var(--butter);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.utility-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 20px;
  background: #fffdf8;
  border-bottom: 1px solid rgba(59,36,23,0.08);
  color: var(--espresso);
  font-size: 0.86rem;
  font-weight: 800;
}
.utility-bar a { color: var(--coral-dark); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59,36,23,0.08);
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-right { justify-content: flex-end; }
.brand {
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--espresso);
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(216,155,43,0.45);
  box-shadow: 0 10px 30px rgba(59,36,23,0.12);
}
.header-cta,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 900;
  cursor: pointer;
}
.header-cta {
  color: var(--white);
  background: var(--coral);
  letter-spacing: 0.08em;
}
.btn.primary {
  color: var(--espresso);
  background: linear-gradient(135deg, var(--butter), var(--honey));
  box-shadow: 0 18px 38px rgba(216,155,43,0.28);
}
.btn.secondary {
  color: var(--espresso);
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(59,36,23,0.12);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(22px, 6vw, 92px) clamp(64px, 8vw, 100px);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 9% auto auto -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(131,199,199,0.28);
}
.hero-copy { position: relative; z-index: 1; }
.kicker {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 600;
}
h1 {
  max-width: 720px;
  font-size: clamp(4.2rem, 8vw, 8.5rem);
  letter-spacing: -0.055em;
  color: var(--espresso);
}
h1::after {
  content: "served bright";
  display: block;
  margin: -6px 0 0 8px;
  color: var(--coral);
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0;
}
h2 { font-size: clamp(2.3rem, 5vw, 5rem); color: var(--espresso); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.35rem, 2.3vw, 2.1rem); color: var(--espresso); }
.lede {
  max-width: 620px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}
.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-proof { margin-top: 26px; }
.hero-proof span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(59,36,23,0.1);
  color: var(--espresso);
  font-weight: 800;
  font-size: 0.86rem;
}
.hero-collage {
  position: relative;
  min-height: 620px;
}
.collage-main {
  position: absolute;
  inset: 7% 2% auto auto;
  width: min(560px, 92%);
  height: 480px;
  object-fit: cover;
  border-radius: 46% 54% 42% 58% / 58% 38% 62% 42%;
  box-shadow: var(--shadow);
  border: 12px solid rgba(255,255,255,0.76);
}
.collage-round {
  position: absolute;
  object-fit: cover;
  border-radius: 999px;
  border: 9px solid rgba(255,255,255,0.88);
  box-shadow: 0 18px 48px rgba(59,36,23,0.18);
}
.collage-round.one { width: 210px; height: 210px; left: 1%; top: 2%; }
.collage-round.two { width: 180px; height: 180px; right: 0; bottom: 4%; }
.collage-round.three { width: 150px; height: 150px; left: 10%; bottom: 10%; }

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(22px, 6vw, 92px) clamp(64px, 8vw, 100px);
}
.quick-cards article,
.package-card,
.event-grid article,
.quote-cards article {
  border: 1px solid rgba(59,36,23,0.09);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 42px rgba(59,36,23,0.06);
}
.quick-cards article { padding: 28px; }
.quick-cards p {
  margin: 0 0 16px;
  color: var(--honey);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
}
.quick-cards h2 { font-size: clamp(1.5rem, 2.4vw, 2.4rem); }
.quick-cards span { display: block; margin-top: 12px; color: var(--muted); }

.section { padding: clamp(66px, 9vw, 118px) clamp(22px, 6vw, 92px); }
.section-heading { max-width: 850px; margin: 0 auto 46px; text-align: center; }
.section-heading > p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 1.08rem; }
.narrow { max-width: 740px; }
.menu-section { background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(243,223,191,0.62)); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.package-card { padding: 25px; }
.warm-card { background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,248,237,0.92)); }
.menu-label {
  margin: 0 0 10px;
  color: var(--honey);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.package-card p:last-child { color: var(--muted); }
.featured-menu {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--espresso);
  color: var(--white);
  box-shadow: var(--shadow);
}
.featured-image { min-height: 460px; background-size: cover; background-position: center; }
.featured-copy { padding: clamp(30px, 5vw, 56px); }
.featured-copy h3 { color: var(--white); font-size: clamp(2rem, 4vw, 4rem); }
.menu-list { display: grid; gap: 18px; margin-top: 28px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.menu-list p { margin: 0; color: rgba(255,255,255,0.78); }
.menu-list strong { color: var(--butter); }
.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.menu-columns article {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(59,36,23,0.08);
}
.menu-columns img { width: 100%; height: 230px; object-fit: cover; }
.menu-columns h3 { padding: 24px 24px 0; }
.menu-columns ul { margin: 16px 24px 28px; padding-left: 20px; color: var(--muted); }
.menu-columns li + li { margin-top: 8px; }

.event-section { background: var(--sage); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.event-grid article { padding: 26px; background: rgba(255,255,255,0.62); }
.event-grid span { display: block; margin-bottom: 8px; color: var(--espresso); font-weight: 900; font-size: 1.05rem; }
.event-grid p { margin: 0; color: var(--muted); }

.lookbook {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(70px, 10vw, 132px) clamp(22px, 6vw, 92px);
  background: var(--cream);
}
.lookbook p:not(.kicker) { color: var(--muted); }
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.lookbook-grid img {
  width: 100%;
  height: clamp(220px, 28vw, 390px);
  object-fit: cover;
  border-radius: 999px 999px 26px 26px;
  box-shadow: 0 18px 42px rgba(59,36,23,0.09);
}
.lookbook-grid img:nth-child(even) { margin-top: 44px; }

.testimonial-band {
  padding: clamp(68px, 10vw, 118px) clamp(22px, 6vw, 92px);
  color: var(--white);
  background: linear-gradient(135deg, #234442, #315f5b);
  text-align: center;
}
.testimonial-band h2 { max-width: 980px; margin: 0 auto; color: var(--white); }
.quote-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.quote-cards article {
  padding: 28px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.14);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 6vw, 74px);
  padding: clamp(70px, 10vw, 132px) clamp(22px, 6vw, 92px);
  background:
    radial-gradient(circle at 92% 20%, rgba(255,216,122,0.35), transparent 26%),
    var(--oat);
}
.quote-intro p:not(.kicker) { color: var(--muted); }
.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.58);
  color: var(--coral-dark);
  font-weight: 900;
}
.contact-card span { color: var(--muted); }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.quote-form label { display: grid; gap: 7px; color: var(--espresso); font-weight: 900; font-size: 0.9rem; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(59,36,23,0.14);
  border-radius: 15px;
  padding: 13px 14px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
}
.full { grid-column: 1 / -1; }
.quote-form .btn { width: 100%; }

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 56px clamp(22px, 6vw, 92px);
  color: rgba(255,255,255,0.78);
  background: #1e1712;
}
.footer img { width: 86px; height: 86px; object-fit: cover; border-radius: 999px; margin-bottom: 16px; }
.footer h3 { margin: 0 0 12px; color: var(--white); font-family: "Playfair Display", serif; }
.footer a { display: block; margin-bottom: 8px; color: var(--butter); font-weight: 800; }
.footer p { max-width: 430px; margin: 0; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; }
  .nav-left,
  .nav-right { justify-content: center; flex-wrap: wrap; }
  .hero-section,
  .featured-menu,
  .lookbook,
  .quote-section,
  .footer { grid-template-columns: 1fr; }
  .hero-collage { min-height: 520px; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-columns,
  .event-grid,
  .quote-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .utility-bar { display: none; }
  .nav-left a:not(:first-child),
  .nav-right a:not(.header-cta) { display: none; }
  .hero-section { grid-template-columns: 1fr; padding-top: 56px; }
  h1 { font-size: clamp(3.7rem, 18vw, 5rem); }
  .hero-collage { min-height: 420px; }
  .collage-main { width: 100%; height: 360px; border-width: 8px; }
  .collage-round.one { width: 130px; height: 130px; }
  .collage-round.two { width: 120px; height: 120px; }
  .collage-round.three { width: 110px; height: 110px; }
  .quick-cards,
  .package-grid,
  .two-col,
  .menu-columns,
  .event-grid,
  .lookbook-grid,
  .quote-cards,
  .quote-form { grid-template-columns: 1fr; }
  .lookbook-grid img,
  .lookbook-grid img:nth-child(even) { height: 240px; margin-top: 0; border-radius: 28px; }
}


/* Restaurant-style multi-page V2 additions */
.nav-left a.active,
.nav-right a.active { color: var(--coral-dark); }
.menu-download {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(59,36,23,0.12);
}
.restaurant-hero h1::after { content: "served coastal"; }
.restaurant-cards { padding-top: 12px; }
.split-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 10vw, 126px) clamp(22px, 6vw, 92px);
  background: #fffdf8;
}
.split-image img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 44px;
  box-shadow: var(--shadow);
}
.split-copy p:not(.kicker) { color: var(--muted); font-size: 1.07rem; }
.menu-download-band {
  text-align: center;
  padding: clamp(72px, 10vw, 120px) clamp(22px, 6vw, 92px);
  background: linear-gradient(135deg, var(--espresso), #5a351e);
  color: rgba(255,255,255,0.82);
}
.menu-download-band h2 { color: var(--white); max-width: 850px; margin: 0 auto 14px; }
.menu-download-band p { max-width: 700px; margin: 0 auto 26px; }
.page-hero {
  text-align: center;
  padding: clamp(74px, 10vw, 132px) clamp(22px, 6vw, 92px) clamp(54px, 8vw, 94px);
  background:
    radial-gradient(circle at 15% 18%, rgba(255,216,122,0.35), transparent 26%),
    radial-gradient(circle at 85% 2%, rgba(131,199,199,0.24), transparent 26%),
    var(--cream);
}
.page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
}
.page-hero h1::after { content: none; }
.compact-page-hero {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(34px, 5vw, 66px);
}
.page-hero p:not(.kicker) {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}
.hero-actions.center { justify-content: center; margin-top: 28px; }

.menu-collection-section {
  padding: clamp(58px, 8vw, 96px) clamp(22px, 6vw, 92px);
  background: #fffdf8;
}
.menu-collection-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.91fr 0.91fr;
  gap: 20px;
}
.download-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(59,36,23,0.09);
  box-shadow: 0 20px 48px rgba(59,36,23,0.08);
}
.download-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.download-card > div { padding: 24px; }
.featured-download img { height: 300px; }
.menu-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.download-card p { color: var(--muted); }
.card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--coral-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}
.pdf-preview-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(64px, 8vw, 104px) clamp(22px, 6vw, 92px);
  background: linear-gradient(135deg, #f3dfbf, #fff8ed);
}
.pdf-preview-copy p:not(.kicker) { color: var(--muted); }
.pdf-preview-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(59,36,23,0.1);
}
.pdf-cover-mock {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--espresso);
}
.pdf-cover-mock img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.pdf-cover-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,23,18,0.05), rgba(30,23,18,0.82));
}
.pdf-cover-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
}
.pdf-cover-copy span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pdf-cover-copy strong {
  max-width: 620px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.96;
}
.pdf-cover-copy em {
  color: rgba(255,255,255,0.82);
  font-style: normal;
  font-weight: 800;
}
.pdf-preview-meta {
  display: grid;
  gap: 18px;
  padding: 24px;
}
.pdf-preview-meta p { margin: 0; color: var(--muted); }

.restaurant-menu-board {
  padding: clamp(36px, 7vw, 80px) clamp(18px, 5vw, 72px) clamp(78px, 10vw, 130px);
  background: linear-gradient(180deg, var(--cream), #f3dfbf);
}
.menu-board-head {
  max-width: 1120px;
  margin: 0 auto 24px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  border-radius: 30px 30px 0 0;
  background: var(--espresso);
  color: rgba(255,255,255,0.82);
  text-align: center;
}
.menu-board-head span { color: var(--butter); font-family: "Great Vibes", cursive; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1; }
.menu-board-head strong { color: var(--white); font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 4vw, 4rem); font-weight: 600; line-height: 1; }
.menu-board-head em { font-style: normal; color: rgba(255,255,255,0.68); }
.menu-board-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.menu-board-grid article {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(59,36,23,0.1);
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(59,36,23,0.07);
}
.menu-board-grid h2 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216,155,43,0.32);
  font-size: clamp(2rem, 3vw, 3.1rem);
}
dl { margin: 0; }
dt {
  margin-top: 18px;
  color: var(--espresso);
  font-weight: 900;
  font-size: 1.04rem;
}
dt:first-child { margin-top: 0; }
dd { margin: 5px 0 0; color: var(--muted); }
.menu-note-card {
  background: linear-gradient(135deg, rgba(255,216,122,0.55), rgba(255,255,255,0.85)) !important;
}
.menu-note-card p { color: var(--muted); margin: 12px 0 24px; }
.feature-events article { min-height: 170px; }
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(40px, 7vw, 86px) clamp(22px, 6vw, 92px) clamp(80px, 10vw, 130px);
  background: #fffdf8;
}
.gallery-page-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(59,36,23,0.08);
}
.gallery-page-grid img { width: 100%; height: 310px; object-fit: cover; }
.gallery-page-grid figcaption { padding: 16px 18px 20px; font-weight: 900; color: var(--espresso); }
.standalone-quote { min-height: 76vh; align-items: start; }
@media (max-width: 1080px) {
  .split-feature,
  .pdf-preview-section,
  .menu-board-grid { grid-template-columns: 1fr; }
  .menu-collection-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .menu-download { display: none; }
  .page-hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .pdf-cover-mock { min-height: 420px; }
  .split-image img { min-height: 320px; }
}
