:root {
  --bg: #0e0c0a;
  --bg-2: #161310;
  --bg-3: #1c1814;
  --cream: #f3ece3;
  --cream-dim: #cfc4b6;
  --gold: #c9a86c;
  --gold-2: #e2c48a;
  --line: rgba(243, 236, 227, 0.12);
  --teal: #1f3b3a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad-x: max(1.5rem, 5vw, env(safe-area-inset-left, 0px));
  --pad-r: max(1.5rem, 5vw, env(safe-area-inset-right, 0px));
  --header-h: calc(4.6rem + env(safe-area-inset-top, 0px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  background: var(--bg);
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  overflow-wrap: break-word;
}

p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(0.85rem + env(safe-area-inset-top, 0px)) var(--pad-r) 0.85rem var(--pad-x);
  background: transparent;
  transition:
    background 0.6s var(--ease),
    backdrop-filter 0.6s var(--ease),
    border-color 0.6s var(--ease),
    padding 0.6s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding-top: calc(0.65rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0.65rem;
  background: rgba(14, 12, 10, 0.86);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 101;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

.logo:hover .logo-mark {
  background: var(--gold);
  color: var(--bg);
}

.logo-text {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.nav-toggle {
  display: none;
  background: rgba(14, 12, 10, 0.72);
  border: 1px solid var(--gold);
  width: 2.75rem;
  height: 2.75rem;
  position: relative;
  z-index: 120;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.nav-toggle-bar {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle-bar:nth-child(2) {
  top: 1.05rem;
}

.nav-toggle-bar:nth-child(3) {
  top: 1.52rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  top: 1.28rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 1.28rem;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.45s var(--ease);
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--cream);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--gold);
  padding: 0.7rem 1.1rem;
  letter-spacing: 0.14em;
  transition: background 0.45s var(--ease), letter-spacing 0.45s var(--ease);
}

.nav-cta:hover {
  background: var(--gold-2);
  letter-spacing: 0.2em;
}

.hero-copy {
  grid-area: copy;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "copy photo";
  gap: 4vw;
  padding: 8rem max(1.5rem, 5vw) 4rem;
  align-items: end;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 1.5rem;
  animation: rise 1.3s var(--ease) both;
}

.hero h1 {
  font-size: clamp(3.1rem, 10vw, 8.5rem);
  font-weight: 500;
}

.hero h1 span {
  display: block;
  animation: rise 1.35s var(--ease) both;
}

.hero h1 span:nth-child(2) {
  animation-delay: 0.12s;
}

.hero h1 span:nth-child(3) {
  animation-delay: 0.26s;
}

.hero-lead {
  max-width: 34rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin: 1.6rem 0 2rem;
  animation: rise 1.3s var(--ease) 0.38s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
  animation: rise 1.3s var(--ease) 0.52s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.35rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    border-color 0.45s var(--ease),
    letter-spacing 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.btn:hover {
  letter-spacing: 0.2em;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  animation: rise 1.3s var(--ease) 0.68s both;
}

.hero-stats dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.hero-stats dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.hero-portrait {
  margin: 0;
  position: relative;
  isolation: isolate;
  grid-area: photo;
  overflow: hidden;
  animation: fade 1.8s var(--ease) 0.2s both;
}

.hero-portrait img {
  width: 100%;
  height: min(86vh, 920px);
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.06);
  animation: settle 18s var(--ease) 0.4s forwards;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 168, 108, 0.35);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.97);
  animation: frame-in 1.4s var(--ease) 0.9s forwards;
}

.hero-portrait figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero-portrait figcaption span {
  color: var(--gold);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--bg-2);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: drift 58s linear infinite;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span::after {
  content: "·";
  margin-left: 3rem;
  color: var(--gold);
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.about,
.journey,
.craft,
.gallery-section,
.table-section,
.faq,
.enquire {
  padding: 7rem max(1.5rem, 5vw);
  scroll-margin-top: var(--header-h);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.section-index {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0;
}

.section-head h2,
.enquire-copy h2,
.philosophy h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4vw;
  align-items: center;
}

.about-photo {
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: min(70vh, 720px);
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 1.2s var(--ease);
}

.about-photo:hover img {
  transform: scale(1.03);
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.about-copy,
.enquire-copy,
.craft-card,
.pillars li,
.timeline li {
  min-width: 0;
}

.about-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1.4rem;
}

.about-copy p,
.enquire-copy p,
.craft-card p,
.pillars p {
  color: var(--cream-dim);
}

.about-copy blockquote {
  margin: 2rem 0 0;
  padding-left: 1.4rem;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline li {
  padding: 2.2rem 2rem 2.2rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.5s var(--ease);
}

.timeline li:hover {
  background: rgba(201, 168, 108, 0.04);
}

.timeline li:hover time {
  letter-spacing: 0.22em;
}

.timeline time {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  transition: letter-spacing 0.5s var(--ease);
}

.timeline li:nth-child(even) {
  padding-left: 2rem;
  padding-right: 0;
  border-right: 0;
}

.timeline h3 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.philosophy {
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.25), rgba(14, 12, 10, 0.82)),
    url("images/chef-portrait.jpg") center 20% / cover no-repeat;
  min-height: 90vh;
  display: grid;
  align-items: end;
}

.philosophy-inner {
  padding: 7rem max(1.5rem, 5vw);
  background: linear-gradient(180deg, transparent, rgba(14, 12, 10, 0.92) 38%);
}

.philosophy-lead {
  max-width: 46rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.25;
  margin-bottom: 3rem;
}

.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.pillars li {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

.pillars li:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.pillars span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.pillars h3 {
  font-size: 1.7rem;
  margin: 0.7rem 0 0.8rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.craft-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 2rem;
  min-height: 16rem;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), background 0.6s var(--ease);
}

.craft-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 108, 0.45);
  background: #1a1612;
}

.craft-card h3 {
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
}

.honours {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.honours li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 1.5rem 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream-dim);
}

.honours li:nth-child(even) {
  padding-left: 1.5rem;
  padding-right: 0;
  border-left: 1px solid var(--line);
}

.honours span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.table-lead {
  max-width: 40rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.plates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.plates article {
  min-width: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.8rem;
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
}

.plates article:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 108, 0.4);
}

.plates ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plates li {
  color: var(--cream-dim);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.35;
}

.plates li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.masterclass {
  margin: 2.2rem 0 0;
  max-width: 46rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.faq-list article {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1.8rem;
}

.faq-list h3 {
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.faq-list p {
  color: var(--cream-dim);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.gallery-grid button {
  margin: 0;
  padding: 0;
  border: 0;
  background: #120f0c;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(10) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.gallery-grid button:nth-child(1) img,
.gallery-grid button:nth-child(10) img {
  height: 340px;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.04);
}

.lightbox {
  border: 0;
  padding: 1.5rem;
  max-width: min(92vw, 1080px);
  width: calc(100vw - 1.5rem);
  background: transparent;
  color: var(--cream);
  z-index: 200;
}

.lightbox[open] {
  animation: fade 0.45s var(--ease);
}

.lightbox::backdrop {
  background: rgba(8, 6, 5, 0.92);
  animation: fade 0.45s var(--ease);
}

.lightbox img {
  display: block;
  max-width: min(88vw, 100%);
  max-height: min(82vh, calc(100dvh - 6rem));
  margin: 0 auto;
  object-fit: contain;
  animation: rise 0.6s var(--ease);
}

.lightbox-close {
  position: fixed;
  top: max(0.8rem, env(safe-area-inset-top, 0px));
  right: max(0.8rem, env(safe-area-inset-right, 0px));
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.6rem;
  background: none;
  border: 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.enquire {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5vw;
  background: var(--bg-2);
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 1.4rem;
}

.contact-links a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  text-transform: none;
  border-bottom: 0;
  padding-bottom: 0;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.contact-links a:hover {
  color: var(--gold-2);
  transform: translateY(-2px);
}

.contact-links span {
  color: var(--cream-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.enquire-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
  position: relative;
}

.enquire-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.enquire-form .full {
  grid-column: 1 / -1;
}

.enquire-form input,
.enquire-form select,
.enquire-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--cream);
  font: inherit;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.85rem 0;
  outline: none;
  transition: border-color 0.45s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.enquire-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) calc(50% - 1px),
    calc(100% - 9px) calc(50% - 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.6rem;
}

.enquire-form input:focus,
.enquire-form select:focus,
.enquire-form textarea:focus {
  border-bottom-color: var(--gold);
}

.enquire-form option {
  background: var(--bg-2);
  color: var(--cream);
}

.enquire-form button {
  margin-top: 0.6rem;
  justify-self: start;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.enquire-form button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
  letter-spacing: 0.16em;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--gold);
  margin: 0;
}

.form-note.is-error {
  color: #e2b6a6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem var(--pad-r) calc(1.5rem + env(safe-area-inset-bottom, 0px)) var(--pad-x);
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  -webkit-tap-highlight-color: transparent;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.4s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--gold-2);
}

.back-to-top:hover .back-to-top-arrow {
  border-color: var(--bg);
}

.back-to-top-arrow {
  width: 0.72rem;
  height: 0.72rem;
  border-top: 2px solid var(--bg);
  border-left: 2px solid var(--bg);
  transform: translateY(3px) rotate(45deg);
}

body.nav-open .back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1.15s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.visible {
  animation-play-state: running;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes settle {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

@keyframes frame-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: #0e0c0a;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: calc(5.5rem + env(safe-area-inset-top, 0px)) var(--pad-r) calc(2rem + env(safe-area-inset-bottom, 0px)) var(--pad-x);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }

  .site-nav a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .site-nav .nav-cta {
    width: auto;
    min-width: 12rem;
    margin-top: 0.8rem;
    padding: 0.85rem 1.8rem;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .pillars,
  .craft-grid,
  .honours,
  .plates,
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enquire {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .enquire-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --pad-x: max(1.15rem, env(safe-area-inset-left, 0px));
    --pad-r: max(1.15rem, env(safe-area-inset-right, 0px));
  }

  .hero,
  .about-grid,
  .pillars,
  .timeline,
  .craft-grid,
  .honours,
  .plates,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(10) {
    grid-column: span 2;
  }

  .gallery-grid img,
  .gallery-grid button:nth-child(1) img,
  .gallery-grid button:nth-child(10) img {
    height: 42vw;
    min-height: 150px;
    max-height: 280px;
  }

  .gallery-grid button:nth-child(1) img,
  .gallery-grid button:nth-child(10) img {
    height: 56vw;
    max-height: 340px;
  }

  .honours li,
  .honours li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    grid-template-columns: 5.6rem minmax(0, 1fr);
  }

  .hero {
    position: relative;
    min-height: 100svh;
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "stage";
    gap: 0;
    align-items: stretch;
  }

  .hero-portrait,
  .hero-copy {
    grid-area: stage;
  }

  .hero-portrait {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .hero-portrait img {
    height: 100%;
    min-height: 0;
    width: 100%;
  }

  .about-photo img {
    height: min(62svh, 520px);
    min-height: 280px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: calc(5.2rem + env(safe-area-inset-top, 0px)) var(--pad-r) calc(1.3rem + env(safe-area-inset-bottom, 0px)) var(--pad-x);
    background: linear-gradient(
      180deg,
      rgba(14, 12, 10, 0.12) 12%,
      rgba(14, 12, 10, 0.18) 38%,
      rgba(14, 12, 10, 0.78) 68%,
      rgba(14, 12, 10, 0.96) 88%
    );
  }

  .hero-portrait::after {
    inset: 0.7rem;
  }

  .hero-portrait figcaption {
    display: none;
  }

  .eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.66rem;
    margin-bottom: 0.85rem;
    max-width: 18rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
    margin: 0.9rem 0 1.2rem;
    max-width: none;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-bottom: 1.3rem;
  }

  .hero-actions .btn {
    flex: 1 1 9rem;
    min-height: 3.05rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    padding-top: 1.1rem;
  }

  .hero-stats dd {
    font-size: 0.98rem;
  }

  .timeline li,
  .timeline li:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }

  .timeline h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .about,
  .journey,
  .craft,
  .gallery-section,
  .table-section,
  .faq,
  .enquire,
  .philosophy-inner {
    padding: 4.2rem var(--pad-r) 4.2rem var(--pad-x);
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-head h2,
  .enquire-copy h2,
  .philosophy h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .about-copy h3 {
    font-size: clamp(1.7rem, 8.5vw, 2.6rem);
  }

  .about-copy blockquote {
    font-size: 1.2rem;
    margin-top: 1.4rem;
  }

  .philosophy {
    min-height: auto;
  }

  .philosophy-lead {
    font-size: clamp(1.35rem, 6.4vw, 2rem);
    margin-bottom: 2rem;
  }

  .pillars {
    gap: 1.1rem;
  }

  .pillars li:hover {
    transform: none;
  }

  .craft-card,
  .plates article {
    min-height: 0;
    padding: 1.35rem;
  }

  .craft-card h3 {
    font-size: 1.7rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 1.6rem;
  }

  .contact-links a {
    min-height: 3rem;
    justify-content: center;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--line);
  }

  .enquire-form button {
    width: 100%;
    justify-self: stretch;
    min-height: 3.15rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .lightbox {
    padding: 3.4rem 0.6rem 1rem;
  }
}

@media (max-width: 430px) {
  .logo-text {
    letter-spacing: 0.14em;
    font-size: 0.7rem;
  }

  .gallery-grid {
    gap: 0.4rem;
  }

  .marquee-track {
    font-size: 1.15rem;
    gap: 2rem;
  }

  .marquee-track span::after {
    margin-left: 2rem;
  }
}

@media (max-width: 360px) {
  .logo-text {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    flex: 1 1 auto;
  }

  .hero-stats {
    gap: 0.4rem;
  }

  .hero-stats dt {
    letter-spacing: 0.1em;
  }

  .hero-stats dd {
    font-size: 0.86rem;
  }
}

@media (max-width: 860px) and (max-height: 720px) {
  .hero {
    grid-template-areas: "photo" "copy";
    min-height: 0;
  }

  .hero-portrait {
    grid-area: photo;
    position: relative;
    inset: auto;
    min-height: 0;
  }

  .hero-portrait img {
    height: 42svh;
    min-height: 210px;
  }

  .hero-portrait figcaption {
    display: none;
  }

  .hero-copy {
    grid-area: copy;
    min-height: 0;
    background: none;
    justify-content: flex-start;
    padding: 1.25rem var(--pad-r) 2rem var(--pad-x);
  }

  .hero-lead {
    font-size: 0.92rem;
  }
}

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

  .marquee-track,
  .reveal,
  .eyebrow,
  .hero h1 span,
  .hero-lead,
  .hero-actions,
  .hero-stats,
  .hero-portrait,
  .hero-portrait img,
  .hero-portrait::after,
  .lightbox,
  .lightbox img {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .back-to-top {
    animation: none;
    transition: none;
    transform: none;
  }

  .btn:hover,
  .craft-card:hover,
  .plates article:hover,
  .pillars li:hover,
  .about-photo:hover img,
  .gallery-grid button:hover img {
    transform: none;
  }
}

@media (hover: none) {
  .btn:hover,
  .nav-cta:hover,
  .craft-card:hover,
  .plates article:hover,
  .pillars li:hover,
  .contact-links a:hover {
    transform: none;
    letter-spacing: inherit;
  }

  .back-to-top:hover {
    background: var(--gold);
  }

  .back-to-top:hover .back-to-top-arrow {
    border-color: var(--bg);
  }
}
