/* Kreme Cruiser - site styles
   Brand palette taken from the cart wrap and menu board. */

:root {
  --teal:       #14b6cf;
  --teal-deep:  #0b8ba0;
  --teal-soft:  #d5f3f8;
  --pink:       #ec3f6e;
  --pink-deep:  #c92454;
  --orange:     #f58220;
  --yellow:     #ffc629;
  --navy:       #14264f;
  --ink:        #1b2440;
  --ink-soft:   #4b556f;
  --line:       #dde3ee;
  --paper:      #ffffff;
  --shell:      #f6f9fc;

  --radius:     16px;
  --radius-lg:  26px;
  --shadow:     0 2px 6px rgba(20,38,79,.06), 0 12px 30px rgba(20,38,79,.08);
  --shadow-lg:  0 4px 10px rgba(20,38,79,.08), 0 24px 60px rgba(20,38,79,.14);
  --wrap:       1140px;
  --font:       "Nunito", "Trebuchet MS", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.18rem, 2.2vw, 1.4rem); }
p  { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--teal-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--pink-deep); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 12px 20px; z-index: 200;
  border-radius: 0 0 10px 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 104px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { display: block; height: 84px; width: auto; }
@media (max-width: 520px) { .logo img { height: 60px; } }

.nav-toggle {
  display: none; align-items: center; gap: 8px;
  background: var(--shell); border: 1px solid var(--line); color: var(--navy);
  font: inherit; font-weight: 800; padding: 9px 14px; border-radius: 10px; cursor: pointer;
}
.nav-toggle:hover { background: var(--teal-soft); }

.site-nav ul {
  list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0;
}
.site-nav a {
  display: block; padding: 9px 12px; border-radius: 10px;
  font-weight: 700; font-size: .97rem; color: var(--ink); text-decoration: none;
}
.site-nav a:hover { background: var(--teal-soft); color: var(--teal-deep); }
.site-nav a[aria-current="page"] { color: var(--pink-deep); background: #fdeaf0; }
.site-nav .nav-cta a {
  background: var(--pink); color: #fff; margin-left: 8px; padding: 11px 20px;
  box-shadow: 0 3px 0 var(--pink-deep);
}
.site-nav .nav-cta a:hover { background: var(--pink-deep); color: #fff; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 10px 20px 18px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 13px 12px; font-size: 1.05rem; }
  .site-nav .nav-cta a { margin: 8px 0 0; text-align: center; }
  .header-inner { position: relative; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 1.02rem; text-decoration: none;
  padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--pink); color: #fff; box-shadow: 0 4px 0 var(--pink-deep); }
.btn-primary:hover { background: var(--pink-deep); color: #fff; }
.btn-secondary { background: var(--teal); color: #fff; box-shadow: 0 4px 0 var(--teal-deep); }
.btn-secondary:hover { background: var(--teal-deep); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { background: var(--shell); color: var(--navy); box-shadow: inset 0 0 0 2px var(--teal); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.section { padding: clamp(38px, 5vw, 62px) 0; }
.section-shell { background: var(--shell); }
.section-teal { background: var(--teal-soft); }
.section-head { max-width: 720px; margin-bottom: 28px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: 12px;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 88% -10%, #d9f5fa 0%, rgba(217,245,250,0) 62%),
    linear-gradient(180deg, #ffffff 0%, var(--shell) 100%);
  padding: clamp(30px, 4vw, 52px) 0 clamp(34px, 4.5vw, 58px);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.hero h1 { margin-bottom: .45em; }
.hero h1 .accent { color: var(--pink); }
.hero-lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 34em; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.hero-photo img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.hero-points { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 8px; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.hero-points li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 460px; margin: 0 auto; }
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .5em; }
.card p { color: var(--ink-soft); }
.card-link {
  display: block; text-decoration: none; color: inherit;
  transition: transform .14s ease, box-shadow .14s ease;
}
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: inherit; }
.card-link .more { display: inline-block; margin-top: 14px; font-weight: 800; color: var(--pink-deep); }
.card-link:hover .more { text-decoration: underline; }

.icon-badge {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--teal-soft); margin-bottom: 16px;
}
.icon-badge svg { width: 26px; height: 26px; stroke: var(--teal-deep); }

.step { counter-increment: step; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pink); color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 16px;
}

/* ---------- Flavor menu ---------- */
.flavor-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .flavor-cols { grid-template-columns: 1fr; } }
.flavor-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.flavor-list li {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 20px; font-weight: 800; color: var(--navy);
  box-shadow: 0 1px 3px rgba(20,38,79,.05);
}
.flavor-list li .dot {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.65);
}
.flavor-list li small { display: block; font-weight: 600; color: var(--ink-soft); font-size: .84rem; }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }
.photo-strip figure { margin: 0; }
.photo-strip img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 3 / 4; object-fit: cover; width: 100%;
}
.photo-strip figcaption { font-size: .9rem; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 46px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.split-form img { aspect-ratio: auto; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 800; color: var(--navy); padding: 18px 30px 18px 0;
  list-style: none; position: relative; font-size: 1.06rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--teal-deep); font-weight: 700; line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding-bottom: 20px; color: var(--ink-soft); }

/* ---------- Callout ---------- */
.callout {
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,.92); max-width: 46em; margin-left: auto; margin-right: auto; }
.callout .btn-row { justify-content: center; margin-top: 26px; }
.callout .btn-ghost { box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); background: transparent; color: #fff; }
.callout .btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 2px #fff; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; color: var(--navy); font-size: .95rem; }
.field .hint { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 2px solid var(--line); border-radius: 12px; padding: 13px 15px; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal); outline: none; box-shadow: 0 0 0 4px var(--teal-soft);
}
.field textarea { min-height: 130px; resize: vertical; }
.req { color: var(--pink-deep); }
.hp { position: absolute; left: -9999px; }

/* ---------- Areas ---------- */
.area-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.area-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; font-weight: 700; color: var(--navy); font-size: .96rem;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; background: #fff; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
th { background: var(--shell); color: var(--navy); font-weight: 800; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 16px 0 0; font-size: .9rem; color: var(--ink-soft); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line); }

/* ---------- Page header ---------- */
.page-head {
  background: linear-gradient(180deg, #fff 0%, var(--shell) 100%);
  padding: 8px 0 clamp(30px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-top: 18px; }
.page-head .lede { max-width: 46em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #c9d3e8; padding: 60px 0 30px; margin-top: 0; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #c9d3e8; text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .logo img { height: 84px; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .88rem; color: #9aa7c4;
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-32 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.note {
  background: #fff8e6; border: 1px solid #f5dfa5; border-left: 5px solid var(--yellow);
  border-radius: 12px; padding: 18px 22px; color: #6b5410;
}

/* ---------- Inquiry form ---------- */
form fieldset {
  border: 0; padding: 0; margin: 0 0 34px;
}
form > fieldset > legend {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  padding: 0 0 14px; margin-bottom: 6px; width: 100%;
  border-bottom: 2px solid var(--line);
}
.label-text { font-weight: 800; color: var(--navy); font-size: .95rem; display: block; }

.choice-set { margin: 22px 0 0; }
.choice-set legend {
  font-weight: 800; color: var(--navy); font-size: .95rem; padding: 0 0 10px;
}
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }

.choice-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 8px; margin-top: 12px;
}

.check {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 2px solid var(--line); border-radius: 12px;
  padding: 11px 15px; font-weight: 700; color: var(--ink);
  cursor: pointer; font-size: .95rem; line-height: 1.35;
}
.check.start { align-items: flex-start; font-weight: 600; }
.check:hover { border-color: var(--teal); background: var(--teal-soft); }
.check input { accent-color: var(--pink); width: 18px; height: 18px; flex: none; margin: 0; }
.check.start input { margin-top: 2px; }
.check:has(input:checked) { border-color: var(--pink); background: #fdeaf0; }
.check:has(input:focus-visible) { outline: 3px solid var(--orange); outline-offset: 2px; }

.signature-input {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.5rem; letter-spacing: .01em;
}
.split-form { grid-template-columns: 1.62fr 1fr; }
@media (max-width: 940px) { .split-form { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure { margin: 0; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.gallery-grid figcaption { margin-top: 12px; color: var(--ink-soft); font-size: .93rem; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--navy); color: #fff; padding: 22px 0; }
.trust-bar ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 820px) { .trust-bar ul { grid-template-columns: repeat(2, 1fr); } }
.trust-bar li { display: flex; align-items: center; gap: 12px; }
.trust-bar b { display: block; font-size: 1.02rem; color: #fff; line-height: 1.2; }
.trust-bar span { display: block; font-size: .86rem; color: #a9b8d6; margin-top: 3px; }
.trust-bar svg { width: 26px; height: 26px; flex: none; stroke: var(--teal); }

/* ---------- Venue strip ---------- */
.venues { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.venues li {
  list-style: none; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; font-weight: 800;
  color: var(--navy); font-size: .95rem; box-shadow: 0 1px 3px rgba(20,38,79,.05);
}

/* ---------- Social band ---------- */
.social-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 2px solid var(--line); border-radius: 999px;
  padding: 12px 24px; font-weight: 800; color: var(--navy); text-decoration: none;
}
.social-btn:hover { border-color: var(--pink); color: var(--pink-deep); }
.social-btn svg { width: 20px; height: 20px; }

/* ---------- Header phone ---------- */
.nav-phone a {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; color: var(--teal-deep); white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; stroke: currentColor; }

/* ---------- Mobile call button ---------- */
.header-actions { display: contents; }
.header-call { display: none; }
@media (max-width: 900px) {
  .header-actions { display: flex; align-items: center; gap: 10px; }
  .header-call {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--teal); color: #fff; text-decoration: none;
    box-shadow: 0 3px 0 var(--teal-deep);
  }
  .header-call:hover { background: var(--teal-deep); color: #fff; }
  .header-call svg { width: 21px; height: 21px; }
}
