:root {
  color-scheme: dark;
  --cream: #fff9ed;
  --ink: #173632;
  --coral: #ee795e;
  --line: rgba(255, 255, 255, 0.28);
  --sans: "DM Sans", "Helvetica Neue", sans-serif;
  --display: "Italiana", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--ink);
}

body {
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: var(--cream);
  color: var(--ink);
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.hero-media,
.hero-media::after,
.hero-wash,
.grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  margin: 0;
  background: #628a8f;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.035);
  animation: settle 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(9, 34, 35, 0.84) 0%, rgba(9, 34, 35, 0.48) 38%, rgba(9, 34, 35, 0.06) 67%),
    linear-gradient(0deg, rgba(10, 26, 25, 0.55) 0%, transparent 37%, rgba(9, 31, 30, 0.2) 100%);
}

.grain {
  z-index: -2;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 118px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(1.4rem, 4vw, 4.8rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.ear {
  position: absolute;
  top: -4px;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(21, 55, 52, 0.45);
}

.ear-left {
  left: 1px;
}

.ear-right {
  right: 1px;
}

.face {
  font-family: var(--display);
  font-size: 1.2rem;
  transform: translateY(1px);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: 0.03em;
}

.brand-place {
  margin-top: 0.34rem;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.76;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.2vw, 3.4rem);
}

.nav-link,
.menu-button,
.panel-close {
  border: 0;
  background: none;
  cursor: pointer;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 240ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-link svg,
.primary-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.visit-link:hover svg,
.primary-button:hover svg {
  transform: translateX(4px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero-content {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px clamp(1.4rem, 7.3vw, 8.8rem) 122px;
}

.hero-copy {
  width: min(760px, 67vw);
  margin-top: 2.2rem;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 8.7vw, 9.2rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 em,
.panel-section h2 em {
  color: #f8d3ae;
  font-weight: 400;
}

.hero-description {
  margin: 2.3rem 0 0 0.5rem;
  font-size: clamp(0.96rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2.25rem 0 0 0.5rem;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 58px;
  padding: 0 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--cream);
  color: var(--ink);
}

.text-button {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-footer {
  position: absolute;
  z-index: 2;
  left: clamp(1.4rem, 4vw, 4.8rem);
  right: clamp(1.4rem, 4vw, 4.8rem);
  bottom: 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  border-top: 1px solid var(--line);
}

.quick-fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-fact > span:last-child {
  display: flex;
  flex-direction: column;
}

.quick-fact strong {
  font-weight: 600;
}

.fact-number {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 1.2rem;
}

.address {
  margin: 0 0 0 auto;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-panel {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  width: min(560px, 92vw);
  height: 100%;
  overflow-y: auto;
  background: var(--cream);
  color: var(--ink);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 560ms cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 560ms;
}

.story-panel.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.panel-close {
  position: absolute;
  z-index: 2;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 54, 50, 0.3);
  border-radius: 50%;
}

.panel-close span {
  position: absolute;
  top: 23px;
  left: 15px;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.panel-close span:first-child {
  transform: rotate(45deg);
}

.panel-close span:last-child {
  transform: rotate(-45deg);
}

.panel-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 7vw, 5.2rem);
}

.panel-kicker {
  margin-top: 0.35rem;
  padding-right: 4rem;
}

.panel-section {
  display: none;
  margin: auto 0;
  padding: 4rem 0;
}

.panel-section.is-active {
  display: block;
  animation: panel-in 500ms 220ms both;
}

.panel-number {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--coral);
}

.panel-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 5.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.panel-section h2 em {
  color: var(--coral);
}

.panel-section > p:last-child {
  max-width: 420px;
  margin: 2rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
}

.panel-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 54, 50, 0.2);
}

.dark-button {
  border-color: var(--ink);
  background: var(--ink);
}

.dark-button:hover,
.dark-button:focus-visible {
  background: transparent;
  color: var(--ink);
}

.panel-phone {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.mobile-menu {
  position: fixed;
  z-index: 8;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 1.5rem 2rem;
  background: #153833;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 0s 300ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav button,
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  font-family: var(--display);
  font-size: clamp(2.6rem, 12vw, 4rem);
  text-align: left;
}

.mobile-menu nav a {
  cursor: pointer;
}

.mobile-menu nav span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  opacity: 0.6;
}

.mobile-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  font-size: 0.75rem;
  line-height: 1.6;
}

.mobile-contact a {
  border-bottom: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

body.is-ready [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .site-header { transition-delay: 80ms; }
body.is-ready .eyebrow { transition-delay: 230ms; }
body.is-ready h1 { transition-delay: 330ms; }
body.is-ready .hero-description { transition-delay: 460ms; }
body.is-ready .hero-actions { transition-delay: 560ms; }
body.is-ready .hero-footer { transition-delay: 680ms; }

@keyframes settle {
  from { transform: scale(1.09); }
  to { transform: scale(1.035); }
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .visit-link,
  .location-fact {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-copy {
    width: min(780px, 82vw);
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 88px;
    padding: 0 1.25rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-place {
    font-size: 0.53rem;
  }

  .hero-media img {
    object-position: 54% center;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(8, 31, 31, 0.76) 0%, rgba(8, 31, 31, 0.2) 100%),
      linear-gradient(0deg, rgba(7, 23, 23, 0.73) 0%, transparent 55%, rgba(7, 23, 23, 0.26) 100%);
  }

  .hero-content {
    align-items: flex-end;
    padding: 110px 1.25rem 148px;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 1.05rem;
    font-size: 0.62rem;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(3.7rem, 17vw, 6.4rem);
    line-height: 0.84;
  }

  .hero-description {
    margin: 1.5rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    gap: 1.25rem;
    margin: 1.45rem 0 0;
  }

  .primary-button {
    min-height: 52px;
    padding: 0 1.2rem;
    gap: 0.8rem;
    font-size: 0.65rem;
  }

  .text-button {
    font-size: 0.64rem;
  }

  .hero-footer {
    left: 1.25rem;
    right: 1.25rem;
    min-height: 88px;
    gap: 2.5rem;
  }

  .quick-fact {
    font-size: 0.58rem;
  }

  .address {
    display: none;
  }

  .panel-close {
    top: 1.4rem;
    right: 1.4rem;
  }

  .panel-inner {
    padding: 2rem 1.5rem;
  }

  .panel-section {
    padding: 5rem 0 3rem;
  }

  .panel-actions {
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-bottom: 136px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .primary-button {
    width: 100%;
  }

  .quick-fact:nth-child(2) {
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
