/* =========================================================
   PUBLIC CBD
   City service spine / daytime venue identity
   HTML5 + CSS3 only
   ========================================================= */

:root {
  --teal: #21413a;
  --teal-deep: #17312c;
  --limestone: #f3efe6;
  --charcoal: #1c211f;
  --terracotta: #c96a45;
  --terracotta-dark: #a65336;
  --sand: #c6af8b;
  --sage: #d8e0db;
  --warm-white: #fffdf9;
  --clay: #8a5142;
  --muted: #6e7069;
  --line: rgba(28,33,31,0.14);
  --light-line: rgba(255,255,255,0.18);

  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;

  --shell: min(1220px, calc(100% - 64px));
  --section-space: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--limestone);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--terracotta);
  color: white;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-170%);
  padding: 10px 14px;
  background: var(--charcoal);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,239,230,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.brand {
  display: inline-grid;
  line-height: 0.92;
  text-decoration: none;
}

.brand-main {
  color: var(--teal);
  font: 700 1.18rem/1 var(--serif);
  letter-spacing: -0.03em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--terracotta);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
}

.desktop-nav a {
  position: relative;
  color: #5e645f;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--terracotta);
  transition: right 160ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.mobile-nav {
  display: none;
}

/* Type + controls */

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #efb49d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  font-size: clamp(4rem, 7.1vw, 7.2rem);
}

h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--terracotta);
  color: white;
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-secondary {
  background: var(--teal);
  color: white;
}

.button-light {
  background: white;
  color: var(--charcoal);
}

.button-outline {
  border-color: var(--charcoal);
  background: transparent;
}

.button-outline:hover {
  background: var(--charcoal);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.77rem;
  font-weight: 900;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: white;
}

/* Hero */

.hero {
  padding: 54px 0 72px;
  background:
    linear-gradient(rgba(33,65,58,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,65,58,0.035) 1px, transparent 1px),
    var(--limestone);
  background-size: 44px 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(54px, 7vw, 94px);
  align-items: center;
}

.hero-copy {
  padding: 44px 0;
}

.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.hero-location {
  margin: 30px 0 0;
  color: #686960;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: 610px;
  padding-left: 88px;
}

.hero-main-photo {
  position: absolute;
  inset: 0 0 78px 88px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 6%, 94% 100%, 7% 93%);
}

.hero-side-photo {
  position: absolute;
  left: 0;
  top: 78px;
  width: 245px;
  height: 290px;
  margin: 0;
  border: 10px solid var(--limestone);
}

.service-spine {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(410px, 74%);
  display: grid;
  gap: 7px;
  padding: 20px 22px;
  background: var(--teal);
  color: white;
}

.spine-kicker {
  color: #efb49d;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-spine small {
  color: rgba(255,255,255,0.64);
  line-height: 1.45;
}

/* Intro */

.intro {
  background: var(--warm-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 58px;
}

.section-marker span {
  display: block;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 900;
}

.section-marker small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy h2 {
  max-width: 900px;
}

.intro-columns {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 52px;
  margin-left: auto;
}

.intro-columns p {
  color: var(--muted);
}

.intro-columns .lead {
  color: var(--charcoal);
  font: 400 1.18rem/1.6 var(--serif);
}

/* Menu + feature */

.menu-feature {
  background: var(--limestone);
}

.menu-feature-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.menu-panel {
  padding: 34px;
  border: 1px solid var(--line);
  background: white;
}

.menu-list {
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.menu-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list article > span {
  color: var(--terracotta);
  font-size: 0.64rem;
  font-weight: 900;
}

.menu-kicker {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.menu-list h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
}

.menu-list p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.feature-panel {
  display: grid;
  grid-template-rows: 1.05fr 0.95fr;
  background: var(--clay);
  color: white;
}

.feature-panel figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.feature-copy {
  padding: 30px;
}

.feature-copy .eyebrow {
  color: #f1b59f;
}

.feature-copy h3 {
  font: 700 2.3rem/1.02 var(--serif);
}

.feature-copy p {
  color: rgba(255,255,255,0.68);
}

/* Catering + functions */

.catering-functions {
  background: var(--sage);
}

.catering-functions-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 18px;
}

.service-module {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.catering-module {
  border: 1px solid rgba(33,65,58,0.18);
  background: var(--sand);
}

.functions-module {
  background: var(--teal);
  color: white;
}

.module-index {
  margin-bottom: auto;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
}

.functions-module .module-index {
  color: #efb49d;
}

.catering-module > div > p:not(.eyebrow) {
  color: #5d503d;
}

.functions-module > div > p:not(.eyebrow) {
  color: rgba(255,255,255,0.65);
}

.functions-module .eyebrow {
  color: #efb49d;
}

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.module-list span {
  padding: 8px 10px;
  border: 1px solid rgba(28,33,31,0.18);
  background: rgba(255,255,255,0.24);
  font-size: 0.68rem;
  font-weight: 800;
}

.event-list {
  margin: 22px 0 26px;
  border-top: 1px solid var(--light-line);
}

.event-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-line);
}

.event-list article > span {
  color: #efb49d;
  font-size: 0.62rem;
  font-weight: 900;
}

.event-list h3 {
  margin-bottom: 4px;
}

.event-list p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
}

/* Ordering + drinks */

.order-drinks {
  background: var(--warm-white);
}

.order-drinks-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 18px;
}

.order-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(rgba(33,65,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,65,58,0.05) 1px, transparent 1px),
    var(--sand);
  background-size: 40px 40px;
}

.order-panel > p:not(.eyebrow) {
  color: #5d503d;
}

.drinks-panel {
  padding: 34px;
  border: 1px solid var(--line);
}

.drink-list {
  border-top: 1px solid var(--line);
}

.drink-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.drink-list article > span {
  color: var(--terracotta);
  font-size: 0.64rem;
  font-weight: 900;
}

.drink-list h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
}

.drink-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.responsible-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

/* Why */

.why {
  background: var(--sage);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}

.why-copy > p:not(.eyebrow) {
  color: #5b645f;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(33,65,58,0.18);
  border-left: 1px solid rgba(33,65,58,0.18);
}

.why-points article {
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid rgba(33,65,58,0.18);
  border-bottom: 1px solid rgba(33,65,58,0.18);
}

.why-points span {
  color: var(--terracotta);
  font-size: 0.64rem;
  font-weight: 900;
}

.why-points h3 {
  margin: 28px 0 7px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.why-points p {
  margin: 0;
  color: #5b645f;
  font-size: 0.82rem;
}

/* Booking + contact */

.booking-contact {
  background: white;
}

.booking-contact-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 18px;
  align-items: stretch;
}

.visit-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(rgba(33,65,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,65,58,0.05) 1px, transparent 1px),
    var(--sage);
  background-size: 40px 40px;
}

.visit-panel address {
  display: grid;
  gap: 5px;
  margin: 24px 0 18px;
  padding-left: 16px;
  border-left: 3px solid var(--terracotta);
  font-style: normal;
}

.visit-panel address span {
  color: #58615c;
}

.visit-panel > p:not(.eyebrow) {
  color: #58615c;
}

.form-panel {
  padding: 34px;
  background: var(--warm-white);
  box-shadow: 0 18px 38px rgba(28,33,31,0.07);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(28,33,31,0.22);
  border-radius: 0;
  background: white;
  color: var(--charcoal);
}

.field input,
.field select {
  min-height: 46px;
  padding: 0 11px;
}

.field textarea {
  min-height: 126px;
  padding: 10px 11px;
  resize: vertical;
}

/* Final CTA */

.final-cta {
  padding: 64px 0;
  background: var(--charcoal);
  color: white;
}

.final-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.final-cta h2 {
  color: white;
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,0.64);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

/* Footer */

.site-footer {
  padding: 48px 0 24px;
  background: #111614;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr 1fr;
  gap: 52px;
}

.footer-brand {
  display: grid;
  align-content: start;
}

.footer-brand .brand-main {
  color: white;
}

.footer-brand .brand-sub {
  color: #efb49d;
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255,255,255,0.52);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  gap: 7px;
}

.footer-nav a,
.footer-bottom a {
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-address {
  display: grid;
  gap: 4px;
  font-style: normal;
}

.footer-address strong {
  margin-bottom: 7px;
}

.footer-address span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--light-line);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.42);
  font-size: 0.7rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hidden-targets {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 42px, 1020px);
  }

  .hero-grid {
    grid-template-columns: 0.84fr 1.16fr;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: calc(100% - 34px);
    --section-space: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .header-row {
    grid-template-columns: 1fr auto;
  }

  .mobile-nav {
    display: block;
    border-top: 1px solid var(--line);
  }

  .mobile-nav-track {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-nav-track::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    font-size: 0.67rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hero-grid,
  .intro-grid,
  .menu-feature-grid,
  .catering-functions-grid,
  .order-drinks-grid,
  .why-grid,
  .booking-contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .final-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-address {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid var(--light-line);
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 26px);
    --section-space: 56px;
  }

  .site-header {
    position: relative;
    backdrop-filter: none;
  }

  .header-row {
    min-height: 72px;
  }

  .header-row .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.62rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .hero {
    padding-top: 30px;
  }

  .hero-stage {
    min-height: 475px;
    padding-left: 0;
  }

  .hero-main-photo {
    inset: 0 0 96px 0;
    clip-path: none;
  }

  .hero-side-photo {
    left: auto;
    right: 10px;
    top: 20px;
    width: 165px;
    height: 200px;
  }

  .service-spine {
    left: 0;
    right: auto;
    width: min(340px, 90%);
  }

  .intro-grid {
    gap: 20px;
  }

  .intro-columns,
  .why-points,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .service-module {
    min-height: 0;
  }

  .final-actions {
    align-items: stretch;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-address {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 20px);
  }

  .brand-main {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.45rem;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-side-photo {
    width: 136px;
    height: 170px;
  }

  .service-spine {
    width: 94%;
    padding: 16px;
  }

  .menu-panel,
  .feature-copy,
  .service-module,
  .order-panel,
  .drinks-panel,
  .visit-panel,
  .form-panel {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
