/* ————— Kebabchi — design tokens sampled from the printed menu ————— */
@font-face {
  font-family: "Cinzel";
  src: url("/fonts/cinzel-600-latin.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("/fonts/cinzel-700-latin.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/sourcesans3-400-latin.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/sourcesans3-600-latin.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/sourcesans3-700-latin.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --parchment: #f8ead0;      /* page ground */
  --parchment-deep: #f3e2bd; /* hero wash */
  --panel: #fdf4de;          /* card fill */
  --navy: #1c3a5e;           /* brand navy (type, bands) */
  --navy-deep: #142c49;      /* footer / hover */
  --ink: #26364a;            /* body text */
  --gold: #b8892e;           /* ornament gold */
  --gold-soft: #d8b56a;      /* hairlines */
  --gold-pale: #e9d5a4;      /* subtle fills */
  --rust: #b65c2e;           /* floral accent */
  --serif: "Cinzel", "Times New Roman", serif;
  --sans: "Source Sans 3", "Gill Sans", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.55;
  font-size: 1.0625rem;
}

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

a { color: var(--navy); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ————— buttons ————— */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  text-decoration: none;
  padding: 0.72rem 1.4rem;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-small { padding: 0.42rem 1rem; font-size: 0.95rem; }
.btn-solid { background: var(--navy); color: var(--parchment); }
.btn-solid:hover { background: var(--navy-deep); }
.btn-outline { border-color: var(--gold); color: var(--navy); }
.btn-outline:hover { background: var(--gold-pale); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9a7124; }
.btn-ghost { border-color: var(--gold-soft); color: var(--parchment); }
.btn-ghost:hover { background: rgba(216, 181, 106, 0.18); }
.btn-parchment { background: var(--parchment); color: var(--navy); font-weight: 700; }
.btn-parchment:hover { background: #fff6e2; }

/* ————— nav ————— */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(248, 234, 208, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--gold-soft);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  font-family: var(--serif); font-weight: 700;
  font-size: 1.35rem; letter-spacing: 0.06em;
  color: var(--navy);
}
.nav-brand img, .footer img {
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
}
.nav-brand img { width: 34px; height: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(0.8rem, 2.5vw, 1.6rem); }
.nav-links a:not(.btn) {
  text-decoration: none; font-weight: 600; color: var(--navy);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav-links a:not(.btn):hover { border-bottom-color: var(--gold); }

/* ————— hero ————— */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 4.5rem);
}
.eyebrow {
  font-family: var(--serif); font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  font-size: 0.85rem; color: var(--gold);
  margin-bottom: 0.6rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3rem, 8vw, 4.8rem);
  letter-spacing: 0.045em;
  color: var(--navy);
  line-height: 1.05;
}
.hero-sub { margin-top: 1.1rem; font-size: 1.15rem; max-width: 34rem; }
.hero-hours { margin-top: 0.9rem; color: var(--navy); font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.hero-phones { margin-top: 1.4rem; font-size: 0.98rem; color: var(--ink); }
.hero-phones a { font-weight: 600; text-decoration: none; border-bottom: 1px dotted var(--gold); }
.hero-art { margin: 0; }
.hero-art img {
  width: min(100%, 460px);
  margin-inline: auto;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 24px 60px -28px rgba(28, 58, 94, 0.55);
  border-radius: 4px;
}

/* ————— menu ————— */
.menu {
  position: relative;
  background: var(--panel);
  border-top: 3px double var(--gold);
  border-bottom: 3px double var(--gold);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}
.corner { position: absolute; width: clamp(90px, 14vw, 190px); opacity: 0.9; pointer-events: none; }
.c-tl { top: 0; left: 0; }
.c-tr { top: 0; right: 0; transform: scaleX(-1); }
.menu-head { text-align: center; max-width: 760px; margin: 0 auto 2.2rem; }
.menu h2, .locations h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--navy);
}
.rule {
  width: 140px; height: 0; margin: 1rem auto 1.4rem;
  border-top: 1px solid var(--gold);
  position: relative;
}
.rule::after {
  content: "❖";
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -58%);
  background: var(--panel);
  padding: 0 0.5rem;
  color: var(--gold); font-size: 0.8rem;
}
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.chips a {
  text-decoration: none;
  font-size: 0.92rem; font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  background: var(--parchment);
  transition: background-color .15s ease;
}
.chips a:hover { background: var(--gold-pale); }

.cards {
  columns: 2;
  column-gap: 1.6rem;
  max-width: 1060px;
  margin: 0 auto;
}
.card {
  break-inside: avoid;
  background: var(--parchment);
  border: 2px solid var(--gold);
  border-radius: 110px 110px 8px 8px;
  padding: 3rem 1.8rem 1.7rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.card::before {
  content: "";
  position: absolute; inset: 7px;
  border: 1px solid var(--gold-soft);
  border-radius: 103px 103px 4px 4px;
  pointer-events: none;
}
.card h3 {
  font-family: var(--serif); font-weight: 700;
  text-align: center;
  color: var(--navy);
  font-size: 1.32rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}
.card .h-sub { margin-top: 1.6rem; }
.card-note {
  text-align: center; font-style: italic;
  font-size: 0.93rem; color: var(--rust);
  margin: -0.5rem 0 0.9rem;
}
.card ul { list-style: none; }
.card li {
  display: flex; align-items: baseline; gap: 0.5rem;
  padding: 0.24rem 0;
  font-size: 1.02rem;
}
.card .n em { font-style: italic; font-size: 0.9em; color: #5a6b80; }
.card .d { flex: 1; border-bottom: 2px dotted var(--gold-soft); min-width: 1.5rem; }
.card .p { font-weight: 700; color: var(--navy); font-variant-numeric: tabular-nums; }
.combo {
  margin-top: 1rem; text-align: center;
  background: var(--gold-pale);
  border-radius: 4px;
  padding: 0.5rem 0.8rem;
  font-size: 0.98rem; color: var(--navy);
}
.pkg li { display: block; padding: 0.55rem 0; }
.pkg-line { display: flex; align-items: baseline; gap: 0.5rem; }
.pkg-line .n { font-weight: 700; color: var(--navy); }
.pkg p { font-size: 0.93rem; color: #56677d; margin-top: 0.15rem; }
.menu-foot {
  text-align: center; font-size: 0.9rem; color: #6b7a8d;
  max-width: 640px; margin: 1.6rem auto 0;
}

/* ————— bouquet transition + locations ————— */
.bouquet { margin: 0; background: var(--parchment); }
.bouquet img { width: 100%; }
.locations {
  background: var(--navy);
  color: var(--parchment);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 6vw, 4.5rem);
  margin-top: -4px; /* meet the bouquet's navy border cleanly */
}
.loc-head { text-align: center; margin-bottom: 2.2rem; }
.eyebrow-light { color: var(--gold-soft); }
.locations h2 { color: var(--parchment); }
.loc-hours { margin-top: 0.7rem; font-weight: 600; color: var(--gold-soft); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  max-width: 820px;
  margin: 0 auto;
}
.loc-card {
  border: 1px solid var(--gold-soft);
  border-radius: 70px 70px 6px 6px;
  padding: 2.2rem 1.6rem 1.7rem;
  text-align: center;
  background: rgba(20, 44, 73, 0.55);
}
.loc-card h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.45rem; letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}
.loc-addr { line-height: 1.45; }
.loc-tel { margin-top: 0.5rem; }
.loc-tel a {
  color: var(--parchment); font-weight: 700; font-size: 1.15rem;
  text-decoration: none; border-bottom: 1px dotted var(--gold-soft);
}
.loc-cta { display: flex; justify-content: center; gap: 0.7rem; margin-top: 1.2rem; }
.loc-order { text-align: center; margin-top: 2.4rem; }

/* ————— footer ————— */
.footer {
  background: var(--navy-deep);
  color: var(--gold-pale);
  text-align: center;
  padding: 2.2rem 1rem 2.6rem;
  border-top: 1px solid var(--gold);
}
.footer img { margin: 0 auto 0.6rem; width: 30px; }
.foot-name {
  font-family: var(--serif); font-weight: 600;
  letter-spacing: 0.14em; font-size: 1.05rem;
  color: var(--parchment);
}
.foot-line { font-size: 0.95rem; margin-top: 0.3rem; }
.foot-copy { font-size: 0.85rem; margin-top: 0.9rem; color: #8fa2b8; }

/* ————— responsive ————— */
@media (max-width: 860px) {
  .cards { columns: 1; max-width: 620px; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { width: min(72vw, 340px); }
  .corner { opacity: 0.55; width: 90px; }
  .menu-head { margin-top: 60px; }
}
@media (max-width: 520px) {
  .nav-links a:not(.btn) { display: none; }
  .card { border-radius: 70px 70px 8px 8px; padding: 2.4rem 1.2rem 1.4rem; }
  .card::before { border-radius: 64px 64px 4px 4px; }
}
