/* ==========================================================================
   Adamou Hospitality — Souvla parties for job sites
   ========================================================================== */

:root {
  --ink:        #101010;
  --ink-deep:   #0c0c0c;
  --ink-black:  #080808;
  --ink-panel:  #1b1b1b;
  --line:       #262626;
  --line-soft:  #3a3a3a;

  --sand:       #efedea;
  --flame:      #c96a2b;
  --flame-lit:  #e08948;

  --text:       #ffffff;
  --text-soft:  #d9d9d9;
  --text-mute:  #8d8d8d;

  --display: 'Oswald', 'Arial Narrow', system-ui, sans-serif;
  --body:    'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: 7vw;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__video { display: none !important; }
  .hero__media { display: block !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }
h1, h2, h3, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }

a { color: var(--flame); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--flame-lit); }

:focus-visible { outline: 3px solid var(--flame-lit); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--flame); color: #fff; padding: 12px 20px;
  font-family: var(--display); letter-spacing: 2px; text-transform: uppercase;
}
.skip-link:focus { left: 0; color: #fff; }

/* --- shared bits ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--display);
  color: var(--flame);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.eyebrow--center { text-align: center; margin-bottom: 12px; }

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  color: var(--text);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.section-title--center { text-align: center; }

.rule { display: block; width: 80px; height: 3px; background: var(--flame); margin: 0 0 28px; }
.rule--muted { width: 50px; height: 2px; background: var(--line-soft); margin-bottom: 26px; }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 19px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: var(--flame);
  padding: 18px 44px;
  transition: background .18s ease, transform .18s ease;
}
.btn:hover, .btn:focus-visible { background: var(--flame-lit); color: #fff; transform: translateY(-2px); }
.btn--sm { font-size: clamp(13px, 1.2vw, 17px); letter-spacing: 2.5px; padding: 13px 24px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  height: 92svh;
  overflow: hidden;
  display: flex;
}
.hero__media { position: absolute; inset: 0; display: block; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 45%;
  display: block;
}
/* Phone-width hero video. Kept out of the layer stack entirely on wider
   screens — the script never attaches sources there. */
.hero__video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background: var(--ink);
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    /* pool of shade behind the headline block, bottom-left */
    radial-gradient(ellipse 85% 55% at 8% 88%, rgba(6,6,6,.80), rgba(6,6,6,0) 72%),
    linear-gradient(180deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.20) 26%, rgba(8,8,8,.58) 52%, rgba(8,8,8,.88) 80%, rgba(8,8,8,.94) 100%);
}
.hero__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px var(--gutter);
}

.topbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar__brand { display: block; line-height: 0; }
.topbar__brand img {
  width: clamp(140px, 20vw, 220px);
  height: auto;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,.6)) brightness(0) invert(1);
}

.hero__copy { margin-top: auto; padding-bottom: 8vh; max-width: 820px; }
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,.55);
}
.hero .eyebrow { text-shadow: 0 2px 14px rgba(0,0,0,.9), 0 0 30px rgba(0,0,0,.6); }

.hero__lede {
  color: #e6e6e6;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.6;
  max-width: 620px;
  text-wrap: pretty;
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) var(--gutter);
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(255,255,255,.05), transparent 55%),
    linear-gradient(160deg, var(--ink-panel), #111);
}
.intro__text p {
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  text-wrap: pretty;
}
.intro__text p + p { margin-top: 18px; }

.intro__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.intro__gallery .shot { display: block; overflow: hidden; }
.intro__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shot--a { height: 260px; }
.shot--b { height: 260px; margin-top: 40px; }
.shot--c { grid-column: 1 / 3; height: 240px; }

/* ==========================================================================
   OUR STORY
   ========================================================================== */
.story {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 5.5vw;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) var(--gutter);
  background-image:
    radial-gradient(ellipse at 85% 15%, rgba(201, 106, 43, .10), transparent 58%),
    linear-gradient(200deg, #191512, #0e0d0c);
}

/* The source is a scanned print — mounting it rather than bleeding it to the
   edge keeps it reading as a family photograph. */
.story__figure { margin: 0; }
.story__figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 8px solid #f3efe8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .55);
}
.story__figure figcaption {
  margin-top: 16px;
  color: var(--text-mute);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.story__text p:not(.eyebrow) {
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  text-wrap: pretty;
}
.story__text p:not(.eyebrow) + p { margin-top: 18px; }

/* ==========================================================================
   MENU
   ========================================================================== */
.menu {
  position: relative;
  padding: clamp(64px, 9vw, 110px) var(--gutter);
  background: var(--ink-deep);
  overflow: hidden;
}
.menu__bg { position: absolute; inset: 0; display: block; }
.menu__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .12;
  display: block;
}
.menu__inner { position: relative; max-width: 1100px; margin: 0 auto; }

.menu__note {
  color: #cfcfcf;
  font-size: clamp(16px, 1.5vw, 19px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-wrap: pretty;
}

.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.menu__heading {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(21px, 2.2vw, 26px);
  letter-spacing: 3px;
  color: var(--flame);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.dishes li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.dishes li + li { margin-top: 18px; }

.dish { color: var(--text); font-size: clamp(17px, 1.7vw, 21px); font-weight: 500; }
.dish__note { color: var(--text-mute); font-size: 15px; text-align: right; flex-shrink: 0; }

.veg {
  color: var(--flame);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
}

.menu__legend { color: var(--text-mute); font-size: 15px; text-align: center; margin: 44px 0 0; }

/* ==========================================================================
   TRUSTED BY
   ========================================================================== */
.trusted { background: var(--sand); padding: clamp(44px, 6vw, 60px) var(--gutter); }

.trusted__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 34px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1a1a1a;
}
.trusted__title::before,
.trusted__title::after {
  content: "";
  height: 2px;
  width: clamp(40px, 10vw, 110px);
  flex-shrink: 0;
}
.trusted__title::before { background: linear-gradient(90deg, transparent, var(--flame)); }
.trusted__title::after  { background: linear-gradient(270deg, transparent, var(--flame)); }

/* Fixed seven-column track: a flex row re-wraps as soon as one logo's
   proportions change and can strand a single mark on its own line. */
.trusted__logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  max-width: 1200px;
  margin: 0 auto;
}
.trusted__logos img {
  height: clamp(30px, 4vw, 50px);
  width: 100%;
  max-width: 132px;
  object-fit: contain;
  display: block;
  opacity: .88;
  transition: opacity .18s ease;
}
/* Dulux is a filled navy lockup, not an open wordmark — at the same bounding
   width it reads heavier than its neighbours, so it sits a little smaller. */
.trusted__logos .is-boxed { max-width: 116px; }
.trusted__logos img:hover { opacity: 1; }
.trusted__logos .is-inked { filter: brightness(0); }

/* ==========================================================================
   BOOK
   ========================================================================== */
.book {
  position: relative;
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  overflow: hidden;
}
.book__bg { position: absolute; inset: 0; display: block; }
.book__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 60%;
  display: block;
}
.book::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,10,10,.82);
}
.book__inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.book__lede {
  color: #dedede;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.book__kicker {
  font-family: var(--display);
  font-weight: 500;
  color: #9a9a9a;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 44px 0 0;
}

/* ==========================================================================
   ENQUIRY FORM  (placeholder — composes a mailto, no backend)
   ========================================================================== */
.enquiry {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 20px;
  text-align: left;
  margin: 0 0 8px;
}

.field { display: flex; flex-direction: column; gap: 8px; }
.field--half  { grid-column: span 3; }
.field--third { grid-column: span 2; }
.field--full  { grid-column: 1 / -1; }

.field label {
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #cfcfcf;
}
.field .opt { color: var(--text-mute); letter-spacing: 1.5px; }

.field input,
.field textarea {
  font-family: var(--body);
  font-size: 16px;                 /* 16px keeps iOS from zooming on focus */
  color: var(--text);
  background: rgba(10, 10, 10, .58);
  border: 1px solid #4a4a4a;
  border-radius: 0;
  padding: 13px 14px;
  width: 100%;
  transition: border-color .18s ease, background .18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 96px; }

.field input::placeholder,
.field textarea::placeholder { color: #6f6f6f; }

.field input:hover,
.field textarea:hover { border-color: #6a6a6a; background: rgba(10, 10, 10, .68); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--flame);
  background: rgba(10, 10, 10, .74);
}
.field input:focus-visible,
.field textarea:focus-visible { outline: 2px solid var(--flame-lit); outline-offset: 2px; }

/* Date/time pickers render dark-on-dark in WebKit without this */
.field input[type="date"],
.field input[type="time"] { color-scheme: dark; }

.enquiry__actions {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 6px;
}
.enquiry__actions .btn { border: 0; cursor: pointer; font-family: var(--display); }

.enquiry__hint {
  flex: 1;
  min-width: 240px;
  color: var(--text-mute);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  text-wrap: pretty;
}

/* Honeypot — off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry__status:empty { display: none; }
.enquiry__status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--flame);
  background: rgba(201, 106, 43, .12);
  color: #e8e8e8;
  font-size: 15px;
  line-height: 1.5;
}
.enquiry__status.is-good {
  border-left-color: #5fbf7a;
  background: rgba(95, 191, 122, .14);
}
.enquiry__status.is-bad {
  border-left-color: #e2564a;
  background: rgba(226, 86, 74, .14);
}
.enquiry__status a { color: var(--flame-lit); text-decoration: underline; }

.enquiry__actions .btn[disabled] { opacity: .6; cursor: progress; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink-black);
  border-top: 1px solid var(--line);
  padding: 34px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo { width: 170px; height: auto; filter: brightness(0) invert(1); opacity: .9; }
.footer__meta { color: #777; font-size: 14px; margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  :root { --gutter: 26px; }

  .intro { grid-template-columns: 1fr; gap: 40px; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .story__figure { max-width: 560px; }
  .intro__gallery { max-width: 560px; }
  .shot--b { margin-top: 0; }

  .menu__cols { grid-template-columns: 1fr; gap: 44px; }

  .field--half, .field--third { grid-column: 1 / -1; }

  .trusted__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 30px;
  }
  .trusted__logos img { width: auto; max-width: 124px; }
  .trusted__logos .is-boxed { max-width: 112px; }

  .footer { justify-content: center; text-align: center; }
}

@media (max-width: 620px) {
  /* Video takes over the hero backdrop on phones */
  .hero__video { display: block; }
  .hero__media { display: none; }

  .hero { height: auto; min-height: 560px; padding-bottom: 0; }
  .hero__inner { padding-top: 24px; min-height: 560px; }
  .hero__copy { padding-bottom: 48px; }
  .hero__lede { font-size: 17px; }

  /* Logo and CTA stay on one line at phone widths — both shrink to fit
     rather than the button dropping below the logo. */
  .topbar { gap: 10px; flex-wrap: nowrap; }
  .topbar__brand img { width: 118px; }
  .topbar .btn--sm {
    font-size: 12px;
    letter-spacing: 1.4px;
    padding: 11px 13px;
    white-space: nowrap;
  }

  .story__figure img { border-width: 6px; }

  .shot--a, .shot--b { height: 180px; }
  .shot--c { height: 190px; }

  .dishes li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .dish__note { text-align: left; }

  .eyebrow { letter-spacing: 3px; }

  .trusted__title::before, .trusted__title::after { display: none; }
  .trusted__logos { gap: 22px 30px; }
  .trusted__logos img { height: 34px; max-width: 110px; }

  .btn { padding: 16px 30px; }

  .enquiry { gap: 16px; }
  .enquiry__actions { flex-direction: column; align-items: stretch; }
  .enquiry__actions .btn { width: 100%; text-align: center; }
}
