/* =========================================================================
   Galiano Delivery — stylesheet
   Brand palette + type taken from the brand sheet.
   Fonts: Oswald (bold signage headings) / Karla (body). Loaded in HTML <head>.
   All colours are CSS vars below — change them in one place.
   ========================================================================= */

:root {
  --cream:    #F2EFE6;  /* background (matches the logo art) */
  --forest:   #1E3D2B;  /* primary green — headings, "Get"   */
  --olive:    #6E7F3E;  /* secondary accent                  */
  --navy:     #1D3A4A;  /* bold accent — nouns, CTAs         */
  --slate:    #587C8E;  /* soft water-blue accent            */
  --wood:     #8B5E34;  /* warm accent, sparingly            */
  --ink:      #283A2E;  /* body text                         */
  --panel:    #FBFAF5;  /* card surface, a touch lighter     */
  --line:     #DAD3C2;  /* hairline borders                  */

  --maxw: 1100px;
  --radius: 14px;
  --shadow: 0 18px 44px -26px rgba(30, 61, 43, 0.5);

  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Karla", system-ui, sans-serif;
}

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

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--forest);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; }

a { color: var(--navy); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ------------------------------ header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 52px; width: auto; display: block; }

.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a {
  text-decoration: none; color: var(--forest);
  font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.92rem;
}
.nav a:hover { color: var(--wood); }

/* ------------------------------- hero ---------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 90% -20%, color-mix(in srgb, var(--slate) 22%, transparent) 0%, transparent 55%),
    var(--cream);
  padding: clamp(3rem, 8vw, 6rem) 0 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 0.8rem;
}
.hero h1 .accent { color: var(--navy); }
.hero p.lead {
  font-size: 1.18rem; max-width: 46ch;
  color: color-mix(in srgb, var(--ink) 88%, transparent);
}
.script-sub {
  font-family: var(--font-head); font-weight: 500; font-size: 1.35rem;
  color: var(--olive); margin: 0.2rem 0 0;
}

/* "Get X" list (the signature pitch) */
.get-list { display: grid; gap: 1rem; }
.get-item { display: flex; align-items: center; gap: 1rem; }
.get-badge {
  flex: 0 0 auto; width: 58px; height: 58px; border-radius: 999px;
  display: grid; place-items: center;
}
.get-badge svg { width: 30px; height: 30px; }
.get-badge.b-food { background: var(--forest); }
.get-badge.b-drink { background: var(--navy); }
.get-badge.b-stuff { background: var(--olive); }
.get-badge.b-deliver { background: var(--slate); }
.get-text {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1; color: var(--forest);
}
.get-text b { color: var(--navy); font-weight: 700; }
.get-text.soft { text-transform: none; font-weight: 600; }
.underscore {
  height: 4px; width: 70%; border-radius: 4px; margin: 0.4rem 0 0 74px;
  background: var(--forest); opacity: 0.5;
}

/* entrance */
.fade { opacity: 0; transform: translateY(14px); animation: rise .7s ease forwards; }
.fade.d1 { animation-delay: .05s; } .fade.d2 { animation-delay: .15s; }
.fade.d3 { animation-delay: .25s; } .fade.d4 { animation-delay: .35s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fade { animation: none; opacity: 1; transform: none; } }

.wave { display: block; width: 100%; height: auto; margin-top: 2.5rem; color: var(--forest); }

/* ------------------------------ buttons -------------------------------- */
.btn {
  display: inline-block; border: none; cursor: pointer; font-family: var(--font-head);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.98rem; padding: 0.8rem 1.7rem; border-radius: 999px;
  text-decoration: none; transition: transform .15s ease, background .15s ease;
}
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: #16301f; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-ghost:hover { background: var(--forest); color: #fff; }
.section-dark .btn-primary { background: var(--cream); color: var(--forest); }
.section-dark .btn-primary:hover { background: #fff; }
.hero .btn { margin-top: 1.8rem; margin-right: 0.6rem; }

/* ------------------------------ sections ------------------------------- */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-dark { background: var(--forest); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: var(--cream); }

.tagline-strip {
  background: var(--navy); color: var(--cream); text-align: center;
  padding: 1.6rem 0; font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 1rem;
}
.tagline-strip b { color: #fff; font-weight: 600; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow);
}
.section-dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: var(--cream); }
.card .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--wood); line-height: 1; display: block; margin-bottom: .5rem; }

/* ------------------------------ contact -------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; font-size: 0.85rem; margin-bottom: .4rem; color: var(--forest); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: .8rem .9rem;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px color-mix(in srgb, var(--olive) 30%, transparent); }
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-weight: 700; min-height: 1.4em; }
.form-status.ok { color: var(--forest); }
.form-status.err { color: var(--wood); }

/* ------------------------------ footer --------------------------------- */
.site-footer { background: var(--forest); color: var(--cream); padding: 2.5rem 0; font-size: .95rem; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.site-footer img { height: 60px; width: auto; }
.site-footer a { color: var(--cream); }
.footer-tags { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; opacity: .85; }

/* ---------------------------- responsive ------------------------------- */
@media (max-width: 860px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .nav { gap: .9rem; }
  .nav a:not(.btn) { display: none; }
  .underscore { margin-left: 74px; }
}
