:root {
  --primary: #556B2F;
  --secondary: #A64E2A;
  --tertiary: #D9C6A3;
  --accent-berry: #b43f61;
  --accent-petrol: #2f7a7d;
  --bg-main: #F8F5F0;
  --text-main: #3A2E22;
  --text-elegant: #4A3A2A;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 24px rgba(58, 46, 34, 0.12);
  --shadow-hover: 0 14px 30px rgba(58, 46, 34, 0.18);
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: min(1060px, 90vw);
  --navbar-top: 10px;
  --navbar-height: 68px;
  --navbar-safe-gap: 22px;
  --header-safe-offset: calc(var(--navbar-top) + var(--navbar-height) + var(--navbar-safe-gap));
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

header[id],
section[id],
footer[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.72;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: none;
}

html.show-entry-loader,
html.show-entry-loader body {
  overflow: hidden;
}

.entry-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

html.show-entry-loader .entry-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.entry-loader-bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.entry-loader-bg::before {
  content: "";
  width: clamp(240px, 78vmin, 980px);
  aspect-ratio: 1;
  background: url("../images/logo-mark-clean.png") center/contain no-repeat;
  opacity: 0.08;
  filter: grayscale(100%) contrast(90%);
}

.entry-loader-center {
  position: relative;
  width: min(86vw, 680px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
  z-index: 1;
}

.entry-loader-logo {
  order: 1;
  width: min(100%, 760px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}

.entry-loader-ring {
  order: 2;
  position: relative;
  width: clamp(156px, 46vw, 300px);
  height: 5px;
  margin-top: clamp(4px, 1.2vw, 10px);
  border-radius: 999px;
  background: rgba(58, 46, 34, 0.2);
  overflow: hidden;
}

.entry-loader-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 48%, var(--tertiary) 100%);
  animation: entry-loader-fill 3s linear forwards;
}

@keyframes entry-loader-fill {
  to {
    transform: scaleX(1);
  }
}

@keyframes entry-loader-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 680px) {
  .entry-loader-bg::before {
    width: clamp(220px, 82vmin, 540px);
  }

  .entry-loader-center {
    width: min(84vw, 360px);
  }

  .entry-loader-ring {
    width: clamp(180px, 62vw, 280px);
    height: 5px;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  .entry-loader-bg::before {
    width: clamp(180px, 64vmin, 420px);
  }
}

@media (max-width: 420px) {
  .entry-loader-center {
    width: min(88vw, 320px);
  }

  .entry-loader-ring {
    width: clamp(156px, 68vw, 238px);
    height: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-loader,
  .entry-loader-ring {
    transition: none;
    animation: none;
  }

  .entry-loader-ring::after {
    animation: none;
  }
}

.site-header {
  position: relative;
  z-index: 10000;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

p {
  color: var(--text-elegant);
  font-size: clamp(1.02rem, 1.15vw, 1.15rem);
  letter-spacing: 0.01em;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

video,
svg,
canvas,
iframe {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1200;
  transition: top var(--transition);
}

.skip-link:focus-visible {
  top: 16px;
}

.section {
  padding: clamp(90px, 9vw, 132px) 0;
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: "Poppins", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--secondary);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.03;
  letter-spacing: 0.01em;
  color: var(--text-main);
}

h2 {
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  margin-bottom: 18px;
}

.text-highlight {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.014em;
  font-size: 1.04em;
}

.hero .text-highlight,
.cta .text-highlight,
.site-footer .text-highlight {
  color: #e8d1a8;
}

.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: var(--container);
  height: 68px;
  margin: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  z-index: 9999;
  isolation: isolate;
  background:
    linear-gradient(130deg, rgba(255, 254, 251, 0.9) 0%, rgba(248, 245, 240, 0.84) 58%, rgba(236, 228, 214, 0.8) 100%);
  border: 1px solid rgba(58, 46, 34, 0.18);
  box-shadow: 0 14px 34px rgba(58, 46, 34, 0.15);
  backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 1;
  visibility: visible;
}

.navbar.scrolled {
  height: 68px;
  top: 10px;
  transform: translateX(-50%);
  background: rgba(248, 245, 240, 0.95);
  border-color: rgba(58, 46, 34, 0.16);
  box-shadow: 0 16px 34px rgba(58, 46, 34, 0.17);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-mark {
  width: clamp(48px, 4.6vw, 58px);
  height: clamp(48px, 4.6vw, 58px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.12) brightness(0.58);
}

.logo-leaf {
  width: clamp(26px, 2.2vw, 34px);
  height: clamp(8px, 0.68vw, 11px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.logo-leaf-left {
  margin-right: -5px;
}

.logo-leaf-right {
  margin-left: -5px;
}

.logo-leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  display: block;
  transform: translateY(-1px);
}

.logo-leaf-left img {
  transform: translateY(2px) scaleX(0.9);
  transform-origin: right center;
}

.logo-leaf-right img {
  transform: translateY(-4px);
}

.logo-text {
  display: inline-block;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  font-size: clamp(1.12rem, 1.58vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--text-main);
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  letter-spacing: 0.09em;
  position: relative;
  opacity: 0.88;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: opacity var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 1px;
  border-radius: 2px;
  background: var(--secondary);
  transform: translateX(-50%) scaleX(0.5);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  background: rgba(217, 198, 163, 0.22);
  border-color: rgba(58, 46, 34, 0.2);
  transform: translateY(-1px);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: linear-gradient(145deg, rgba(85, 107, 47, 0.92) 0%, rgba(70, 91, 40, 0.94) 100%);
  color: #fff;
  border-color: rgba(58, 46, 34, 0.36);
  box-shadow: 0 8px 18px rgba(58, 46, 34, 0.2);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 0.78;
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  background: #f1dfbd;
  opacity: 1;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(58, 46, 34, 0.18);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 6px 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text-main);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background: linear-gradient(92deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 30%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.08) 68%, rgba(0, 0, 0, 0) 82%);
  z-index: 1;
}

.hero::after {
  background: url("../foto ristorante/FOTO HOME SFONDO.png") center center / cover no-repeat;
  transform: scale(1);
  z-index: 0;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: calc(100vw - clamp(22px, 4.2vw, 72px));
  margin-left: clamp(12px, 2.2vw, 30px);
  margin-right: auto;
  padding-top: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  align-items: center;
  gap: clamp(20px, 3.2vw, 38px);
}

.hero-content {
  position: relative;
  width: min(620px, 100%);
  max-width: 620px;
  grid-column: 1;
  justify-self: start;
  margin-left: clamp(12px, 1.8vw, 28px);
  transform: none;
  color: var(--white);
}

.hero-media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 360px;
  grid-column: 2;
  justify-self: end;
  transform: translateX(clamp(-44px, -3.2vw, -20px));
  margin-right: clamp(2px, 1.2vw, 18px);
  aspect-ratio: 9 / 14;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(232, 209, 168, 0.78);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 44px rgba(166, 78, 42, 0.34);
  background: rgba(0, 0, 0, 0.36);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle at 36% 18%, rgba(232, 209, 168, 0.22) 0%, rgba(166, 78, 42, 0.18) 42%, rgba(0, 0, 0, 0) 74%);
  filter: blur(8px);
}

.hero-media-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(58, 46, 34, 0.72);
  color: #f4e6cd;
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tertiary);
  font-size: 0.66rem;
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-kicker::after {
  content: "";
  width: 44px;
  height: 1px;
  margin-left: 12px;
  background: #d9b56b;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.8rem, 5.3vw, 4.4rem);
  line-height: 1.12;
  margin-bottom: 30px;
  text-wrap: balance;
  max-width: 22ch;
}

.hero h1 .line {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  color: #FFFFFF;
  max-width: 56ch;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-weight: 400;
  line-height: 1.82;
  letter-spacing: 0.015em;
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.24);
  margin-top: 42px;
}

.hero-subtitle .hero-emphasis {
  font-family: "Playfair Display", serif;
  color: #e8d1a8;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline;
  padding: 0.04em 0.22em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.34);
  box-decoration-break: clone;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-content.reveal.is-visible .hero-kicker,
.hero-content.reveal.is-visible h1,
.hero-content.reveal.is-visible .hero-actions,
.hero-content.reveal.is-visible .hero-subtitle {
  opacity: 0;
  transform: translateY(16px);
  animation: homeHeroTextIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-content.reveal.is-visible .hero-kicker {
  animation-delay: 120ms;
}

.hero-content.reveal.is-visible h1 {
  animation-delay: 240ms;
}

.hero-content.reveal.is-visible .hero-actions {
  animation-delay: 360ms;
}

.hero-content.reveal.is-visible .hero-subtitle {
  animation-delay: 500ms;
}

.hero-info {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  row-gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.45;
}

.hero-info span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-info span:nth-child(odd) {
  font-weight: 400;
}

.hero-info span:nth-child(even) {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 3;
  background: rgba(255, 255, 255, 0.02);
}

.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1.4s infinite ease-in-out;
}

@keyframes scrollDot {
  0% { transform: translateY(-6px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(6px); opacity: 0; }
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate3d(0, 0, 0); }
  100% { transform: scale(1.04) translate3d(-1.2%, -0.6%, 0); }
}

@keyframes homeHeroTextIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 20px rgba(58, 46, 34, 0.24);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 14px 26px rgba(58, 46, 34, 0.3);
    transform: translateY(-1px);
  }
}

@keyframes ctaShimmer {
  0%,
  66% {
    left: -45%;
    opacity: 0;
  }
  74% {
    opacity: 1;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 38px;
  border-radius: 14px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), background 420ms ease;
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(130deg, var(--primary), #7c9d45);
  box-shadow: 0 10px 20px rgba(58, 46, 34, 0.24);
}

.hero .btn-primary {
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.2s ease-in-out infinite;
}

.hero .btn-primary::after {
  content: "";
  position: absolute;
  top: -160%;
  bottom: -160%;
  left: -42%;
  width: 34%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  animation: ctaShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(130deg, var(--secondary), #df7f45);
  box-shadow: 0 16px 30px rgba(58, 46, 34, 0.26);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.01);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.95);
}

.btn-tertiary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(130deg, rgba(180, 63, 97, 0.9), rgba(47, 122, 125, 0.9));
  box-shadow: 0 10px 20px rgba(54, 31, 41, 0.3);
}

.btn-tertiary:hover {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(130deg, rgba(200, 78, 114, 0.96), rgba(54, 141, 145, 0.96));
  box-shadow: 0 16px 28px rgba(54, 31, 41, 0.35);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
  padding-inline: 34px;
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.concept-layout,
.experience-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(28px, 4.2vw, 68px);
  align-items: center;
}

.concept {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(217, 198, 163, 0.26), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(85, 107, 47, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(248, 245, 240, 0.92));
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.8;
  z-index: 0;
}

.concept::before {
  width: 220px;
  height: 220px;
  left: -92px;
  top: 50px;
  background: radial-gradient(circle, rgba(217, 198, 163, 0.45), rgba(217, 198, 163, 0));
  animation: conceptDrift 18s ease-in-out infinite;
}

.concept::after {
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: 30px;
  background: radial-gradient(circle, rgba(85, 107, 47, 0.16), rgba(85, 107, 47, 0));
  animation: conceptDrift 22s ease-in-out infinite reverse;
}

.concept-layout {
  position: relative;
  z-index: 1;
}

.concept-copy p {
  margin-bottom: 20px;
  max-width: 56ch;
}

.concept-manifesto {
  max-width: 58ch;
  font-size: clamp(1.16rem, 1.55vw, 1.28rem);
  color: #4a3a2a;
}

.concept-copy p:first-of-type::first-letter {
  float: left;
  font-family: "Playfair Display", serif;
  font-size: 3.2em;
  line-height: 0.9;
  padding-right: 0.08em;
  color: var(--secondary);
}

.concept-quote-band {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(58, 46, 34, 0.12);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64));
  box-shadow: 0 10px 22px rgba(58, 46, 34, 0.08);
  position: relative;
  overflow: hidden;
}

.concept-quote-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary), var(--tertiary));
}

.concept-quote-band p {
  margin: 0 0 6px;
  font-style: italic;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  line-height: 1.4;
}

.concept-quote-band cite {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.concept-signature {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(58, 46, 34, 0.14);
  background: linear-gradient(145deg, rgba(85, 107, 47, 0.11), rgba(217, 198, 163, 0.22));
  box-shadow: 0 12px 26px rgba(58, 46, 34, 0.08);
}

.concept-signature h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.concept-signature p {
  margin: 0;
  max-width: 62ch;
}

.concept-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.concept-visual-main,
.concept-visual-stack figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(58, 46, 34, 0.12);
  box-shadow: 0 14px 30px rgba(58, 46, 34, 0.1);
}

.concept-visual-main img,
.concept-visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-visual-main {
  min-height: 500px;
}

.concept-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(58, 46, 34, 0.14) 100%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.22), transparent 26%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.concept-visual-main img,
.concept-visual-stack img {
  animation: softFloat 16s ease-in-out infinite;
}

.concept-visual-main figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(58, 46, 34, 0.54);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

.concept-visual-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.concept-visual-stack figure {
  min-height: 220px;
}

.concept-side-quote {
  margin: 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(58, 46, 34, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 240, 0.76));
  box-shadow: 0 12px 24px rgba(58, 46, 34, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
}

.concept-side-quote::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(166, 78, 42, 0.8), rgba(217, 198, 163, 0.08));
}

.concept-side-quote p {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.06rem, 1.4vw, 1.18rem);
  line-height: 1.35;
  color: #3c2f23;
}

.concept-side-quote cite {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
}

.concept-image img,
.experience-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.concept-image img {
  aspect-ratio: 4 / 3;
}

.concept-image-stack {
  display: grid;
  gap: 12px;
}

.concept-editorial {
  border-radius: 16px;
  border: 1px solid rgba(58, 46, 34, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  padding: clamp(18px, 2.2vw, 24px);
  box-shadow: 0 14px 30px rgba(58, 46, 34, 0.1);
}

.concept-editorial-quote {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(58, 46, 34, 0.2);
}

.concept-editorial-quote p {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.24rem, 1.9vw, 1.55rem);
  line-height: 1.4;
  font-style: italic;
  color: #3c2f23;
}

.concept-editorial-quote cite {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.concept-editorial-values {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.concept-editorial-values li {
  position: relative;
  padding-left: 18px;
  color: #4a3a2a;
  font-size: 1.02rem;
  line-height: 1.5;
}

.concept-editorial-values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tertiary);
}

.concept-editorial-sign {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(58, 46, 34, 0.14);
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #3f3226;
}

@keyframes conceptDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.04);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

.philosophy-editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(226, 185, 110, 0.22), transparent 36%),
    radial-gradient(circle at 88% 4%, rgba(95, 122, 47, 0.12), transparent 30%),
    linear-gradient(180deg, #fdf8f0 0%, #f6efe3 100%);
  color: var(--text-main);
  padding-block: clamp(84px, 8vw, 112px);
}

.philosophy-editorial::before,
.philosophy-editorial::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(2px);
}

.philosophy-editorial::before {
  width: 24rem;
  height: 24rem;
  left: -10rem;
  top: 3rem;
  background: radial-gradient(circle, rgba(198, 165, 107, 0.14), rgba(198, 165, 107, 0));
}

.philosophy-editorial::after {
  width: 30rem;
  height: 30rem;
  right: -12rem;
  bottom: 3rem;
  background: radial-gradient(circle, rgba(107, 126, 60, 0.16), rgba(107, 126, 60, 0));
}

.philosophy-shell {
  position: relative;
  z-index: 1;
  width: min(1400px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  font-family: "Manrope", sans-serif;
}

.philosophy-editorial p {
  font-family: "Manrope", sans-serif;
  color: #4a3a2a;
  line-height: 1.65;
  font-size: clamp(0.88rem, 0.88vw, 0.96rem);
}

.philosophy-kicker,
.philosophy-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.philosophy-kicker::before,
.philosophy-cta-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(166, 78, 42, 0.96), rgba(201, 95, 44, 0.52));
}

.philosophy-panel {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 2.8vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(58, 46, 34, 0.1);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 26px rgba(58, 46, 34, 0.06);
}

.philosophy-copy-block h2,
.philosophy-cta h2 {
  font-family: "Playfair Display", serif;
  color: var(--text-main);
}

.philosophy-designer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(290px, 0.86fr);
  gap: clamp(24px, 3.4vw, 46px);
  align-items: center;
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.philosophy-copy-block h2 {
  margin: 0 0 14px;
  font-size: clamp(2.55rem, 4.3vw, 4.1rem);
  line-height: 0.9;
  letter-spacing: -0.014em;
  max-width: 9ch;
}

.philosophy-copy-block h2 span {
  display: block;
}

.philosophy-copy-block h2 em {
  font-style: normal;
  color: var(--primary);
}

.philosophy-lead {
  max-width: 54ch;
  font-size: clamp(0.96rem, 1.03vw, 1.05rem);
  color: #4b3d31;
  margin-bottom: 18px;
}

.philosophy-composed-gallery {
  display: block;
  width: 100%;
  max-width: 390px;
  margin-left: auto;
}

.philosophy-gallery-hero {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(58, 46, 34, 0.11);
  box-shadow: 0 10px 20px rgba(58, 46, 34, 0.11);
  aspect-ratio: 4 / 5;
}

.philosophy-gallery-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.philosophy-gallery-hero img {
  object-position: center 50%;
}

.philosophy-gallery-hero:hover img {
  transform: scale(1.04);
}

.philosophy-gallery-hero figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(58, 46, 34, 0.56);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  text-align: center;
}

.philosophy-principles {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(16px, 1.9vw, 22px);
  padding-top: 8px;
  padding-left: 32px;
}

.philosophy-story-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(18px, 2.3vw, 28px);
  align-items: stretch;
  margin-top: clamp(16px, 1.8vw, 22px);
}

.philosophy-story-photos {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  height: 100%;
  max-width: 250px;
}

.philosophy-story-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(58, 46, 34, 0.1);
  box-shadow: 0 8px 16px rgba(58, 46, 34, 0.1);
  min-height: 0;
  height: 100%;
}

.philosophy-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.philosophy-story-photo:first-child img {
  object-position: center 55%;
}

.philosophy-story-photo:last-child img {
  object-position: center 50%;
}

.philosophy-principles::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(166, 78, 42, 0.08), rgba(166, 78, 42, 0.28), rgba(166, 78, 42, 0.08));
}

.philosophy-principle {
  position: relative;
  width: min(760px, 100%);
  padding: 2px 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(58, 46, 34, 0.08);
  background: transparent;
  box-shadow: none;
}

.philosophy-principle::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b3744c;
  box-shadow: 0 0 0 2px rgba(166, 78, 42, 0.1);
}

.philosophy-principle h3 {
  margin: 0 0 4px;
  font-size: 1.13rem;
  letter-spacing: 0.015em;
  font-family: "Playfair Display", serif;
  color: #3d3024;
}

.philosophy-principle p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.78;
  color: #5a4b3d;
  max-width: 58ch;
}

.philosophy-principle:last-child {
  border-bottom: 0;
}

.philosophy-quote {
  position: relative;
  padding: clamp(16px, 1.8vw, 22px);
  margin: clamp(10px, 1.2vw, 14px) 0 0;
  border-left: 1px solid rgba(198, 165, 107, 0.7);
  background: rgba(255, 255, 255, 0.34);
}

.philosophy-quote-mark {
  position: absolute;
  left: 4px;
  top: -10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 1;
  color: rgba(198, 165, 107, 0.3);
}

.philosophy-quote p {
  margin: 0 0 10px;
  max-width: 24ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.44rem, 2.2vw, 1.9rem);
  line-height: 1.06;
  color: var(--text-main);
}

.philosophy-quote cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
}

.philosophy-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 20px;
  border: 1px solid rgba(201, 95, 44, 0.18);
  background: linear-gradient(135deg, rgba(95, 122, 47, 0.16), rgba(226, 185, 110, 0.28), rgba(201, 95, 44, 0.16), rgba(180, 63, 97, 0.12));
  box-shadow: 0 24px 44px rgba(58, 46, 34, 0.08);
}

.philosophy-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 0.98;
}

.philosophy-cta p {
  max-width: 58ch;
  font-size: 0.92rem;
}

.philosophy-cta-button.btn-primary {
  background: linear-gradient(135deg, var(--primary), #55682f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 18px 32px rgba(107, 126, 60, 0.26);
}

.philosophy-cta-button.btn-primary:hover {
  background: linear-gradient(135deg, #748943, #5c6f36);
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(107, 126, 60, 0.3);
}

.philosophy-gallery-hero img {
  animation: philosophyFloat 14s ease-in-out infinite;
}

@keyframes philosophyFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.01);
  }
}

.value {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(217, 198, 163, 0.26));
}

.section-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 34px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(58, 46, 34, 0.12);
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: 0 12px 28px rgba(58, 46, 34, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  display: inline-flex;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.72rem;
  letter-spacing: 0.012em;
}

.experience-image img {
  min-height: 420px;
  object-position: center 42%;
}

.experience-content p {
  max-width: 56ch;
}

.menu-preview {
  position: relative;
  overflow: hidden;
  padding-top: clamp(120px, 12vw, 156px);
  padding-bottom: clamp(90px, 9vw, 132px);
  background:
    radial-gradient(circle at 12% 14%, rgba(174, 166, 130, 0.22), transparent 38%),
    radial-gradient(circle at 88% 18%, rgba(85, 107, 47, 0.12), transparent 30%),
    radial-gradient(circle at 90% 84%, rgba(58, 90, 82, 0.12), transparent 32%),
    linear-gradient(180deg, #ebe4d7 0%, #ddd4c3 100%);
}

.menu-preview::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(760px, 80vw);
  aspect-ratio: 3.34 / 1;
  background: url("../images/logo-wordmark-new-transparent.png") center center / contain no-repeat;
  opacity: 0.5;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: normal;
  filter: brightness(0) contrast(1.22);
}

.menu-preview::after {
  content: none;
}

.menu-preview .section-inner {
  position: relative;
  z-index: 2;
}

.menu-preview h2 {
  margin-bottom: 10px;
}

.menu-preview-intro {
  max-width: 58ch;
  margin-bottom: 12px;
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  font-family: "Manrope", sans-serif;
  color: #4c3a2e;
}

.menu-preview h2 {
  margin-bottom: 12px;
  line-height: 0.95;
  white-space: normal;
  text-wrap: balance;
}

.menu-preview h2 span {
  color: #a64e2a;
  text-shadow: 0 8px 20px rgba(166, 78, 42, 0.12);
}

.menu-preview-emphasis {
  color: #9f5631;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(218, 188, 138, 0) 0%, rgba(218, 188, 138, 0) 54%, rgba(218, 188, 138, 0.5) 54%, rgba(218, 188, 138, 0.5) 100%);
  padding: 0 0.08em;
}

.menu-preview-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  grid-template-areas:
    "manifesto visual"
    "flow visual";
  align-items: center;
  gap: 18px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(166, 78, 42, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 187, 140, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(247, 238, 224, 0.72));
  box-shadow: 0 18px 34px rgba(58, 46, 34, 0.08);
}

.menu-preview-manifesto {
  grid-area: manifesto;
  position: relative;
  padding: 2px 0 0 18px;
  z-index: 1;
}

.menu-preview-manifesto::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.2em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(166, 78, 42, 1), rgba(210, 157, 83, 0.55));
}

.menu-preview-manifesto p {
  margin: 0 0 10px;
  max-width: 56ch;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 1.42vw, 1.28rem);
  line-height: 1.56;
  color: #3d3024;
}

.menu-preview-manifesto p:last-child {
  margin-bottom: 0;
}

.menu-preview-visual {
  grid-area: visual;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(166, 78, 42, 0.18);
  box-shadow: 0 24px 40px rgba(58, 46, 34, 0.16);
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.menu-preview-visual img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.01);
}

.menu-preview-flow {
  grid-area: flow;
  position: relative;
  margin: 0;
  padding: 10px 14px 0 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9f5631;
  z-index: 1;
}

.menu-preview-note {
  padding: 2px 0 0 14px;
  border-left: 3px solid rgba(166, 78, 42, 0.55);
  padding-left: 12px;
  max-width: 60ch;
  font-size: 0.92rem;
}

.menu-invite {
  background: linear-gradient(160deg, #dac7a7 0%, #d3bea0 100%);
  max-width: 56ch;

  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.5;
  max-width: 780px;
}

.menu-invite-box p {
  margin: 0 auto 24px;
  max-width: 56ch;
}

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 8% 12%, rgba(246, 236, 216, 0.34) 0%, rgba(246, 236, 216, 0) 44%),
    radial-gradient(90% 120% at 92% 80%, rgba(85, 107, 47, 0.08) 0%, rgba(85, 107, 47, 0) 52%),
    linear-gradient(145deg, #eee5d7 0%, #e5dac9 46%, #d9ccb9 100%);
  padding-block: clamp(48px, 6vw, 74px);
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.cta::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 0;
  background-size: 38px 38px, 38px 38px;
  opacity: 0.08;
  filter: none;
  animation: logoCtaDrift 70s linear infinite;
}

  max-width: 60ch;
  font-size: 0.92rem;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-logo-primary {
  background: #81945a;
  -webkit-mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  -webkit-mask-repeat: no-repeat, no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat, no-repeat;
  -webkit-mask-size: 122px 122px, 88px 88px, 78px 78px;
  mask-size: 122px 122px, 88px 88px, 78px 78px;
  -webkit-mask-position: 92% 10%, 8% 12%, 12% 88%;
  mask-position: 92% 10%, 8% 12%, 12% 88%;
  opacity: 0.08;
  animation: ctaLogoPrimaryDrift 72s linear infinite;
}

.cta-logo-secondary {
  background: #cdbc9d;
  -webkit-mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  -webkit-mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  -webkit-mask-size: 96px 96px, 84px 84px, 74px 74px, 68px 68px, 72px 72px, 64px 64px;
  mask-size: 96px 96px, 84px 84px, 74px 74px, 68px 68px, 72px 72px, 64px 64px;
  -webkit-mask-position: 90% 52%, 76% 90%, 64% 8%, 24% 90%, 10% 56%, 6% 36%;
  mask-position: 90% 52%, 76% 90%, 64% 8%, 24% 90%, 10% 56%, 6% 36%;
  opacity: 0.08;
  animation: ctaLogoSecondaryDrift 82s linear infinite;
}

.cta-logo-tertiary {
  background: #e8decb;
  -webkit-mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 92px 92px, 80px 80px;
  mask-size: 92px 92px, 80px 80px;
  -webkit-mask-position: 94% 30%, 86% 4%;
  mask-position: 94% 30%, 86% 4%;
  opacity: 0.1;
  animation: ctaLogoTertiaryDrift 90s linear infinite;
}

.cta-logo-charcoal {
  background: #8a8378;
  -webkit-mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  mask-image:
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png"),
    url("../images/logo-mark-clean.png");
  -webkit-mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  -webkit-mask-size: 76px 76px, 70px 70px, 64px 64px, 62px 62px, 58px 58px, 66px 66px, 56px 56px, 60px 60px, 54px 54px;
  mask-size: 76px 76px, 70px 70px, 64px 64px, 62px 62px, 58px 58px, 66px 66px, 56px 56px, 60px 60px, 54px 54px;
  -webkit-mask-position: 96% 46%, 4% 20%, 8% 78%, 4% 56%, 94% 74%, 50% 4%, 48% 96%, 98% 18%, 14% 94%;
  mask-position: 96% 46%, 4% 20%, 8% 78%, 4% 56%, 94% 74%, 50% 4%, 48% 96%, 98% 18%, 14% 94%;
  opacity: 0.1;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.14));
  animation: ctaLogoCharcoalDrift 88s linear infinite;
}

.cta::after {
  width: min(520px, 54vw);
  aspect-ratio: 1;
  right: -10%;
  top: -28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 68%);
}

@keyframes logoCtaDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: -18px -14px, -18px -14px;
  }
}

@keyframes ctaLogoPrimaryDrift {
  0% {
    -webkit-mask-position: 92% 10%, 8% 12%, 12% 88%;
    mask-position: 92% 10%, 8% 12%, 12% 88%;
  }
  100% {
    -webkit-mask-position: 90% 8%, 6% 10%, 10% 86%;
    mask-position: 90% 8%, 6% 10%, 10% 86%;
  }
}

@keyframes ctaLogoSecondaryDrift {
  0% {
    -webkit-mask-position: 90% 52%, 76% 90%, 64% 8%, 24% 90%, 10% 56%, 6% 36%;
    mask-position: 90% 52%, 76% 90%, 64% 8%, 24% 90%, 10% 56%, 6% 36%;
  }
  100% {
    -webkit-mask-position: 88% 50%, 74% 88%, 62% 6%, 22% 88%, 8% 54%, 4% 34%;
    mask-position: 88% 50%, 74% 88%, 62% 6%, 22% 88%, 8% 54%, 4% 34%;
  }
}

@keyframes ctaLogoTertiaryDrift {
  0% {
    -webkit-mask-position: 94% 30%, 86% 4%;
    mask-position: 94% 30%, 86% 4%;
  }
  100% {
    -webkit-mask-position: 92% 28%, 84% 2%;
    mask-position: 92% 28%, 84% 2%;
  }
}

@keyframes ctaLogoCharcoalDrift {
  0% {
    -webkit-mask-position: 96% 46%, 4% 20%, 8% 78%, 4% 56%, 94% 74%, 50% 4%, 48% 96%, 98% 18%, 14% 94%;
    mask-position: 96% 46%, 4% 20%, 8% 78%, 4% 56%, 94% 74%, 50% 4%, 48% 96%, 98% 18%, 14% 94%;
  }
  100% {
    -webkit-mask-position: 94% 44%, 6% 18%, 10% 76%, 6% 54%, 92% 72%, 52% 2%, 50% 94%, 96% 16%, 16% 92%;
    mask-position: 94% 44%, 6% 18%, 10% 76%, 6% 54%, 92% 72%, 52% 2%, 50% 94%, 96% 16%, 16% 92%;
  }
}

@keyframes ctaBoxBloom {
  0% {
    transform: translateY(34px) scale(0.955);
    box-shadow: 0 10px 20px rgba(78, 65, 46, 0.06);
    opacity: 0;
  }
  58% {
    transform: translateY(-6px) scale(1.012);
    box-shadow: 0 30px 56px rgba(78, 65, 46, 0.16);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 46px rgba(78, 65, 46, 0.12);
    opacity: 1;
  }
}

@keyframes ctaEmblemOrbit {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-4px) rotate(4deg) scale(1.04);
  }
  50% {
    transform: translateY(-9px) rotate(0deg) scale(1.08);
  }
  75% {
    transform: translateY(-4px) rotate(-4deg) scale(1.04);
  }
}

@keyframes ctaButtonShimmer {
  0%,
  100% {
    transform: translateX(-140%) rotate(18deg);
    opacity: 0;
  }
  22% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  58% {
    opacity: 0;
  }
  100% {
    transform: translateX(280%) rotate(18deg);
  }
}

.cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #2f241a;
  max-width: 980px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 22px;
  border: 1px solid rgba(85, 107, 47, 0.16);
  background: linear-gradient(160deg, rgba(250, 246, 238, 0.96) 0%, rgba(244, 238, 228, 0.94) 58%, rgba(235, 227, 214, 0.92) 100%);
  box-shadow: 0 24px 46px rgba(78, 65, 46, 0.12);
  backdrop-filter: none;
}

.cta-box.is-visible {
  animation: ctaBoxBloom 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(85, 107, 47, 0.08);
  pointer-events: none;
}

.cta-emblem {
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #6f8442 0%, #556b2f 100%);
  border: 1px solid rgba(85, 107, 47, 0.14);
  box-shadow: 0 10px 20px rgba(78, 65, 46, 0.08);
  display: block;
  -webkit-mask-image: url("../images/logo-mark-clean.png");
  mask-image: url("../images/logo-mark-clean.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 82%;
  mask-size: 82%;
}

.cta-box.is-visible .cta-emblem {
  animation: ctaEmblemOrbit 4.2s cubic-bezier(0.37, 0, 0.63, 1) 260ms infinite;
}

.cta-box h2,
.cta-box p {
  color: #2f241a;
}

.cta-box p {
  margin: 0 auto 14px;
  max-width: 58ch;
}

.cta-intro {
  max-width: 54ch;
  margin: 2px auto 16px;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.62;
  letter-spacing: 0.012em;
  color: rgba(58, 46, 34, 0.84);
}

.booking-form {
  margin-top: 14px;
  text-align: left;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.82);
}

.booking-time-fieldset {
  grid-column: 1 / -1;
  border: 0;
  margin: 0;
  padding: 0;
}

.booking-time-fieldset legend {
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.82);
}

.booking-time-trigger {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(85, 107, 47, 0.22);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #2f241a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.booking-time-trigger:hover {
  border-color: rgba(85, 107, 47, 0.4);
}

.booking-time-trigger:focus-visible {
  outline: none;
  border-color: rgba(85, 107, 47, 0.34);
  box-shadow: 0 0 0 2px rgba(85, 107, 47, 0.12);
}

.booking-time-trigger-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.booking-time-fieldset.is-open .booking-time-trigger-icon {
  transform: rotate(225deg) translateY(-1px);
}

.booking-time-panel {
  margin-top: 10px;
}

.booking-time-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.booking-time-pill {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.booking-time-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-time-pill span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(85, 107, 47, 0.28);
  background: rgba(255, 255, 255, 0.78);
  color: #2f241a;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.booking-time-pill:hover span {
  transform: translateY(-1px);
  border-color: rgba(85, 107, 47, 0.54);
  box-shadow: 0 8px 16px rgba(78, 65, 46, 0.12);
}

.booking-time-pill input:checked + span {
  color: #fff;
  border-color: #556b2f;
  background: linear-gradient(135deg, #6c8440 0%, #556b2f 100%);
  box-shadow: 0 10px 18px rgba(78, 65, 46, 0.2);
}

.booking-time-pill input:disabled + span {
  opacity: 0.42;
  border-color: rgba(85, 107, 47, 0.16);
  background: rgba(234, 230, 222, 0.6);
  color: rgba(47, 36, 26, 0.52);
  box-shadow: none;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-time-pill input:focus-visible + span {
  outline: 2px solid rgba(85, 107, 47, 0.42);
  outline-offset: 2px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(85, 107, 47, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: #2f241a;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(74, 58, 42, 0.56);
}

.booking-form select option {
  color: #2f241a;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(85, 107, 47, 0.34);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(85, 107, 47, 0.12);
}

.booking-notes {
  margin-top: 10px;
}

.booking-consent {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.booking-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.booking-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
}

.booking-actions .btn {
  min-height: 46px;
}

.booking-actions .btn-light {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #6c8440 0%, #556b2f 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(78, 65, 46, 0.14);
}

.booking-actions .btn-light::after {
  content: "";
  position: absolute;
  top: -170%;
  bottom: -170%;
  left: 0;
  width: 30%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.cta-box.is-visible .booking-actions .btn-light::after {
  animation: ctaButtonShimmer 2.8s ease-in-out infinite;
}

.booking-actions .btn-light:hover {
  background: linear-gradient(135deg, #78924a 0%, #617a37 100%);
  box-shadow: 0 16px 28px rgba(78, 65, 46, 0.18);
}

.booking-actions .btn-secondary {
  border: 2px solid #b45f36;
  background: transparent;
  color: #b45f36;
  box-shadow: 0 10px 20px rgba(180, 95, 54, 0.14);
}

.booking-actions .btn-secondary:hover {
  background: rgba(191, 103, 58, 0.12);
  color: #b45f36;
  border-color: #b45f36;
  box-shadow: 0 14px 24px rgba(180, 95, 54, 0.18);
}

.booking-note {
  margin: 0 0 0 auto;
  max-width: min(430px, 100%);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(58, 46, 34, 0.8);
  text-align: left;
}

.booking-feedback {
  min-height: 1.2em;
  margin-top: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  color: #556b2f;
}

.site-footer {
  background: rgba(90, 62, 42, 0.9);
  color: #ffffff;
  padding: 48px 0 18px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px;
  border: 1px solid rgba(217, 198, 163, 0.5);
  object-fit: contain;
  margin-bottom: 8px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.site-footer h3 {
  color: #b8d58c;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.footer-contacts {
  display: grid;
  gap: 8px;
}

.footer-contacts p {
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contacts i {
  color: #b8d58c;
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contacts a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-contacts a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.64);
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color var(--transition), border-color var(--transition);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
  color: #fff;
  border-color: #b8d58c;
  background: rgba(184, 213, 140, 0.28);
}

.copyright {
  width: var(--container);
  margin: 18px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero-inner {
    width: min(96vw, 900px);
    margin-left: auto;
    margin-right: auto;
    padding-top: calc(var(--header-safe-offset, 92px) + 12px);
    padding-inline: clamp(14px, 3vw, 24px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-right: 0;
  }

  .hero-media {
    grid-column: 1;
    justify-self: center;
    width: min(92vw, 360px);
    margin: 8px 0 0 0;
    transform: none;
    aspect-ratio: 4 / 5;
  }

  .hero h1 .line {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .menu-preview h2 {
    white-space: normal;
    line-height: 1.08;
    font-size: clamp(2rem, 8vw, 2.6rem);
    max-width: 11ch;
  }

  .menu-preview h2 span {
    display: block;
    margin-top: 2px;
  }

  :root {
    --navbar-height: 64px;
    --navbar-safe-gap: 18px;
  }

  .navbar {
    border-radius: 16px;
    height: 64px;
    top: 10px;
    padding: 0 14px;
    background: rgba(248, 245, 240, 0.93);
  }

  .logo {
    min-width: 0;
    max-width: none;
    gap: 6px;
  }

  .logo-brand {
    gap: 0;
  }

  .logo-mark {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
  }

  .logo-leaf {
    width: clamp(24px, 3.3vw, 30px);
    height: clamp(7px, 1vw, 10px);
  }

  .logo-text {
    display: inline-block;
    font-size: clamp(0.92rem, 2.35vw, 1.08rem);
    letter-spacing: 0.11em;
  }

  .concept-layout {
    gap: 24px;
  }

  .philosophy-designer-grid,
  .philosophy-principles {
    grid-template-columns: 1fr;
  }

  .philosophy-story-layout {
    grid-template-columns: 1fr;
  }

  .philosophy-story-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .philosophy-story-photo {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .philosophy-principle,
  .philosophy-principle:nth-child(2),
  .philosophy-principle:nth-child(3),
  .philosophy-principle:nth-child(4) {
    margin-left: 0;
    width: 100%;
  }

  .philosophy-composed-gallery {
    max-width: 460px;
    margin-left: 0;
  }

  .philosophy-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .philosophy-gallery-hero {
    aspect-ratio: 3 / 4;
  }

  .navbar.scrolled {
    height: 64px;
    top: 10px;
  }

  .menu-toggle {
    display: inline-block;
    min-width: 42px;
    min-height: 42px;
    padding: 6px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(248, 245, 240, 0.95);
    border: 1px solid rgba(58, 46, 34, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 14px 28px rgba(58, 46, 34, 0.14);
    padding: 18px;
    display: none;
    flex-direction: column;
    gap: 8px;
    max-height: calc(100svh - 110px);
    overflow-y: auto;
    backdrop-filter: blur(10px);
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 12px;
  }

  .nav-links a.active,
  .nav-links a[aria-current="page"] {
    box-shadow: none;
    border-color: rgba(58, 46, 34, 0.28);
  }

  .nav-links a::after {
    left: 12px;
    transform: scaleX(0.5);
    transform-origin: left center;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
  }

  .nav-links.open {
    display: flex;
  }

  .concept-grid,
  .concept-layout,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .concept-visual-stack {
    grid-template-columns: 1fr;
  }

  .concept-visual-main {
    min-height: 320px;
  }

  .concept-side-quote {
    min-height: 170px;
  }

  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-preview-editorial {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "manifesto"
      "flow";
  }

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

  .booking-time-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-note {
    margin-left: 0;
    max-width: 100%;
  }

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

  .social-links {
    justify-content: center;
  }

  .hero::before {
    background: linear-gradient(92deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 40%, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0.08) 76%, rgba(0, 0, 0, 0) 88%);
  }

  .hero h1 {
    font-size: clamp(2.9rem, 6vw, 3.6rem);
    line-height: 1.1;
  }

}

@media (max-width: 680px) {
  .navbar {
    width: min(96vw, 96vw);
    padding: 0 10px;
  }

  .logo-leaf {
    width: clamp(20px, 4.9vw, 24px);
    height: clamp(6px, 1.4vw, 9px);
  }

  .logo-mark {
    width: clamp(34px, 9.8vw, 40px);
    height: clamp(34px, 9.8vw, 40px);
  }

  .logo-text {
    display: inline-block;
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    letter-spacing: 0.08em;
  }

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

  .hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: calc(var(--header-safe-offset, 92px) + 12px);
    padding-inline: clamp(14px, 3.8vw, 22px);
  }

  .hero::before {
    background: linear-gradient(92deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 46%, rgba(0, 0, 0, 0.34) 68%, rgba(0, 0, 0, 0.1) 82%, rgba(0, 0, 0, 0) 92%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    grid-column: 1;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    text-align: left;
  }

  .hero-media {
    width: min(92vw, 340px);
    grid-column: 1;
    justify-self: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: clamp(10px, 3vw, 18px);
    transform: none;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .hero-media-tag {
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
    padding: 7px 11px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8.4vw, 2.9rem);
    line-height: 1.08;
    max-width: 10ch;
  }

  .hero h1 .line {
    white-space: normal;
  }

  .hero-subtitle {
    margin-top: 22px;
    max-width: 38ch;
    font-size: clamp(0.94rem, 3.7vw, 1.02rem);
    line-height: 1.62;
  }

  .hero-kicker {
    margin-bottom: 12px;
    letter-spacing: 0.18em;
    font-size: 0.58rem;
  }

  .hero-kicker::after {
    width: 30px;
    margin-left: 8px;
  }

  .philosophy-editorial {
    padding-block: 72px;
  }

  .philosophy-copy-block h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    max-width: 9ch;
  }

  .philosophy-gallery-hero {
    aspect-ratio: 4 / 5;
  }

  .philosophy-story-photos {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .philosophy-story-photo {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .philosophy-principle {
    padding: 8px 0 10px;
  }

  .philosophy-principles {
    padding-left: 24px;
  }

  .philosophy-principles::before {
    left: 8px;
  }

  .philosophy-principle::before {
    left: -19px;
  }

  .philosophy-gallery-hero img {
    height: 100%;
  }

  .philosophy-quote {
    padding: 20px 16px;
  }

  .philosophy-quote p {
    max-width: 16ch;
    font-size: clamp(1.3rem, 7vw, 1.8rem);
  }

  .philosophy-cta {
    gap: 18px;
  }

  .philosophy-cta-button.btn-primary {
    width: 100%;
  }

  p {
    font-size: clamp(1.08rem, 4.4vw, 1.24rem);
  }

  .hero-info {
    gap: 12px;
    font-size: 0.78rem;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 18px;
    gap: 10px;
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 210px;
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .hero-scroll {
    display: none;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .experience-image img {
    min-height: 280px;
  }
}

@media (max-width: 420px) {
  .logo {
    gap: 4px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .logo-leaf {
    width: 17px;
    height: 6px;
  }

  .logo-text {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 420px) {
  .hero-content {
    margin-left: 0;
    padding-right: 0;
  }

  .hero-inner {
    padding-inline: 14px;
    padding-bottom: 84px;
  }

  .hero-media {
    width: min(94vw, 300px);
    justify-self: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: clamp(8px, 3.4vw, 14px);
    transform: none;
    aspect-ratio: 5 / 7;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.35rem);
    max-width: 11ch;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.56;
    margin-top: 18px;
  }

  .hero-actions .btn {
    flex-basis: 100%;
  }
}

@media (orientation: landscape) and (max-height: 560px) {
  :root {
    --navbar-top: 8px;
    --navbar-height: 58px;
    --navbar-safe-gap: 12px;
  }

  .navbar,
  .navbar.scrolled {
    height: 58px;
    top: 8px;
  }

  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero-inner {
    width: min(98vw, 900px);
    padding-top: calc(var(--header-safe-offset, 92px) + 6px);
    padding-bottom: 14px;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .hero-content {
    margin-left: 0;
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 4.2vw, 2.6rem);
    line-height: 1.04;
    margin-bottom: 12px;
    max-width: 16ch;
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: clamp(0.86rem, 1.5vw, 0.98rem);
    line-height: 1.5;
    max-width: 60ch;
  }

  .hero-actions {
    margin-top: 12px;
    gap: 8px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    flex: 0 1 auto;
  }

  .hero-media {
    width: min(58vw, 250px);
    margin: 0;
    transform: none;
    aspect-ratio: 4 / 5;
    justify-self: center;
  }

  .hero-scroll {
    display: none;
  }
}

@media (orientation: landscape) and (max-height: 430px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: calc(var(--header-safe-offset, 92px) + 4px);
  }

  .hero-media {
    display: none;
  }

  .hero-subtitle {
    display: none;
  }
}
