/* Harbour Free Bake — alterdisbr.icu */
:root {
  --hf-wheat: #c4a06a;
  --hf-wheat-deep: #9a7340;
  --hf-espresso: #1a120e;
  --hf-espresso-soft: #2c2119;
  --hf-flour: #efe4d4;
  --hf-flour-deep: #e0d0b8;
  --hf-bran: #7a5c3e;
  --hf-ink: #1f1611;
  --hf-muted: #655447;
  --hf-line: rgba(26, 18, 14, 0.14);
  --hf-max: 1080px;
  --hf-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--hf-ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(196, 160, 106, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(26, 18, 14, 0.06), transparent 50%),
    var(--hf-flour);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hf-espresso-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.25s var(--hf-ease);
}

a:hover {
  color: var(--hf-wheat-deep);
}

h1,
h2,
h3,
.brand-mark {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--hf-espresso);
}

h1 {
  font-size: clamp(2.35rem, 5.8vw, 3.9rem);
  margin: 0 0 0.35em;
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  margin: 0 0 0.45em;
}

h3 {
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(100% - 2.5rem, var(--hf-max));
  margin-inline: auto;
}

.lede {
  font-size: 1.12rem;
  color: var(--hf-muted);
  max-width: 38rem;
}

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hf-bran);
  margin-bottom: 0.7rem;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.15rem 0;
}

.site-header.is-solid {
  position: sticky;
  top: 0;
  background: rgba(239, 228, 212, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hf-line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.15;
}

.logo span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
  margin-top: 0.2rem;
}

.site-header.is-solid .logo {
  color: var(--hf-espresso);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.site-header.is-solid .menu-toggle {
  border-color: var(--hf-line);
  color: var(--hf-espresso);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-main a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 0;
  height: 2px;
  background: var(--hf-wheat);
  transition: width 0.3s var(--hf-ease);
}

.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after {
  width: 100%;
}

.site-header.is-solid .nav-main a {
  color: var(--hf-espresso-soft);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--hf-espresso);
    padding: 0.4rem 0 1rem;
    border-bottom: 1px solid rgba(196, 160, 106, 0.28);
  }

  .nav-main.open {
    display: flex;
  }

  .nav-main a {
    padding: 0.9rem 1.3rem;
    color: var(--hf-flour);
  }

  .site-header.is-solid .nav-main {
    background: var(--hf-flour);
  }

  .site-header.is-solid .nav-main a {
    color: var(--hf-espresso);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.78rem 1.3rem;
  cursor: pointer;
  transition:
    background 0.25s var(--hf-ease),
    color 0.25s var(--hf-ease),
    border-color 0.25s var(--hf-ease),
    transform 0.25s var(--hf-ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-wheat {
  background: var(--hf-wheat);
  color: var(--hf-espresso);
}

.btn-wheat:hover {
  background: var(--hf-wheat-deep);
  color: #fff;
}

.btn-espresso {
  background: var(--hf-espresso);
  color: var(--hf-flour);
}

.btn-espresso:hover {
  background: var(--hf-espresso-soft);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-header.is-solid .btn-ghost,
.section .btn-ghost,
.cookie-actions .btn-ghost {
  border-color: var(--hf-line);
  color: var(--hf-espresso);
}

.site-header.is-solid .btn-ghost:hover,
.section .btn-ghost:hover,
.cookie-actions .btn-ghost:hover {
  background: rgba(26, 18, 14, 0.05);
  color: var(--hf-espresso);
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-plane {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-plane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 24s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 18, 14, 0.4) 0%, rgba(26, 18, 14, 0.12) 38%, rgba(26, 18, 14, 0.78) 100%),
    linear-gradient(100deg, rgba(26, 18, 14, 0.5) 0%, transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 4.5rem;
  max-width: 34rem;
  animation: riseIn 0.9s var(--hf-ease) both;
}

.brand-mark {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  margin-bottom: 0.45em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-line {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.1) translate(-1.5%, -1%);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-wheat {
  background:
    linear-gradient(180deg, rgba(196, 160, 106, 0.16), rgba(196, 160, 106, 0.05));
  border-block: 1px solid rgba(154, 115, 64, 0.18);
}

.section-espresso {
  background: var(--hf-espresso);
  color: var(--hf-flour);
}

.section-espresso h2,
.section-espresso h3 {
  color: #fff;
}

.section-espresso .eyebrow {
  color: var(--hf-wheat);
}

.section-espresso .lede,
.section-espresso p {
  color: rgba(239, 228, 212, 0.82);
}

.section-espresso a {
  color: var(--hf-wheat);
}

.section-espresso a:hover {
  color: #fff;
}

.page-hero {
  padding: 6.5rem 0 2.5rem;
  background:
    linear-gradient(135deg, var(--hf-espresso) 0%, var(--hf-espresso-soft) 100%);
  color: var(--hf-flour);
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: rgba(239, 228, 212, 0.8);
  max-width: 36rem;
  margin: 0;
}

/* Editorial split */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 780px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.pull-note {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--hf-bran);
  border-left: 3px solid var(--hf-wheat);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

/* Promise rail */
.promise-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hf-line);
  border-bottom: 1px solid var(--hf-line);
}

.promise-item {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--hf-line);
  animation: riseIn 0.7s var(--hf-ease) both;
}

.promise-item:nth-child(2) {
  animation-delay: 0.08s;
}

.promise-item:nth-child(3) {
  animation-delay: 0.16s;
}

.promise-item:last-child {
  border-right: none;
}

.promise-item h3 {
  margin-bottom: 0.35em;
}

.promise-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--hf-muted);
}

@media (max-width: 720px) {
  .promise-rail {
    grid-template-columns: 1fr;
  }

  .promise-item {
    border-right: none;
    border-bottom: 1px solid var(--hf-line);
  }

  .promise-item:last-child {
    border-bottom: none;
  }
}

/* Menu chapters */
.chapter {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--hf-line);
}

.chapter:first-of-type {
  border-top: 1px solid var(--hf-line);
}

.chapter-num {
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  color: var(--hf-wheat-deep);
  line-height: 1;
  padding-top: 0.15rem;
}

.chapter h3 {
  margin-bottom: 0.35em;
}

.chapter p {
  margin: 0;
  color: var(--hf-muted);
  max-width: 40rem;
}

.menu-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(122, 92, 62, 0.25);
  font-size: 0.98rem;
}

.menu-list li:last-child {
  border-bottom: none;
}

.menu-list .price {
  font-weight: 500;
  color: var(--hf-espresso);
  white-space: nowrap;
}

/* Visit / hours */
.hours-panel {
  background: #fff;
  border: 1px solid var(--hf-line);
  padding: 1.75rem;
}

.hours-panel h3 {
  margin-top: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--hf-line);
  text-align: left;
  font-weight: 400;
}

.hours-table th {
  color: var(--hf-muted);
}

.hours-table td {
  text-align: right;
  font-weight: 500;
}

.hours-note {
  font-size: 0.88rem;
  color: var(--hf-muted);
  margin: 1rem 0 0;
}

.visit-facts {
  display: grid;
  gap: 1.5rem;
}

.visit-facts.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 720px) {
  .visit-facts.cols-3 {
    grid-template-columns: 1fr;
  }
}

.visit-facts h3 {
  margin-bottom: 0.25em;
}

.visit-facts p {
  margin: 0;
  color: var(--hf-muted);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-stack label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--hf-espresso);
}

.form-stack input,
.form-stack textarea,
.form-stack select {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--hf-line);
  background: #fff;
  color: var(--hf-ink);
  border-radius: 0;
}

.form-stack input:focus,
.form-stack textarea:focus,
.form-stack select:focus {
  outline: 2px solid var(--hf-wheat);
  outline-offset: 1px;
}

.form-stack textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: rgba(196, 160, 106, 0.2);
  border-left: 3px solid var(--hf-wheat-deep);
  margin-bottom: 1rem;
}

.form-success.show {
  display: block;
}

/* About timeline */
.craft-steps {
  display: grid;
  gap: 0;
  counter-reset: craft;
}

.craft-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hf-line);
  counter-increment: craft;
}

.craft-step::before {
  content: counter(craft, decimal-leading-zero);
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--hf-wheat-deep);
  line-height: 1;
}

.craft-step p {
  margin: 0;
  color: var(--hf-muted);
}

/* Legal */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  color: var(--hf-muted);
}

.legal-content li {
  margin-bottom: 0.45rem;
}

/* Footer */
.site-footer {
  background: var(--hf-espresso);
  color: rgba(239, 228, 212, 0.75);
  padding: 3.5rem 0 2rem;
}

.site-footer .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--hf-wheat);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(239, 228, 212, 0.15);
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

/* Cookie banner */
#cookie-banner {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  background: var(--hf-espresso);
  color: var(--hf-flour);
  padding: 1.25rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

#cookie-banner.show {
  display: block;
  animation: riseIn 0.45s var(--hf-ease) both;
}

.cookie-inner {
  width: min(100% - 0.5rem, var(--hf-max));
  margin-inline: auto;
}

.cookie-inner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: rgba(239, 228, 212, 0.88);
}

.cookie-inner a {
  color: var(--hf-wheat);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

#cookie-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(239, 228, 212, 0.2);
}

#cookie-panel.open {
  display: grid;
  gap: 0.65rem;
}

.cookie-opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
