:root {
  --ink: #14241e;
  --ink-deep: #0b1713;
  --jade: #1c4a3d;
  --jade-soft: #366a59;
  --cream: #f5f0e7;
  --paper: #fbf8f1;
  --gold: #c6a46a;
  --muted: #737a72;
  --line: rgba(20, 36, 30, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --page-width: 1240px;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: white;
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: min(100%, calc(var(--page-width) + (2 * var(--page-gutter))));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 104px;
  padding: 1.1rem var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-copy strong { font-size: 0.78rem; }
.brand-copy small { font-size: 0.6rem; opacity: 0.68; }

.header-menu { display: contents; }

.main-nav {
  display: flex;
  justify-self: center;
  gap: clamp(1.25rem, 3vw, 2.8rem);
}
.main-nav a {
  position: relative;
  padding-block: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: clamp(0.5rem, 1.4vw, 0.9rem);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.header-cta:hover,
.header-cta:focus-visible { border-color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.12); }
.header-cta-primary { border-color: var(--cream); background: var(--cream); color: var(--ink); }
.header-cta-primary:hover,
.header-cta-primary:focus-visible { border-color: white; background: white; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 13px 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--ink-deep);
  color: white;
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.95) 0%, rgba(5, 15, 12, 0.78) 34%, rgba(5, 15, 12, 0.2) 70%, rgba(5, 15, 12, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 16, 13, 0.65), transparent 42%),
    url("assets/hero-lecanardor-original.jpg") center / cover no-repeat;
  transform: scale(1.015);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.eyebrow,
.section-kicker,
.location-type {
  margin: 0 0 1.6rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  margin-right: 0.9rem;
  background: currentColor;
  content: "";
  vertical-align: middle;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}
.hero h1 em { display: block; color: #ded2bd; font-weight: 400; }
.hero-intro {
  max-width: 530px;
  margin: 2.25rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.6rem; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 1rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button-primary { border-color: var(--cream); background: var(--cream); color: var(--ink); }
.button-primary:hover,
.button-primary:focus-visible { border-color: white; background: white; }
.button-ghost:hover,
.button-ghost:focus-visible { background: rgba(255, 255, 255, 0.12); }
.hero-note {
  position: absolute;
  z-index: 1;
  right: var(--page-gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-note-divider { width: 24px; height: 1px; background: currentColor; }

.intro-section { padding-block: clamp(5rem, 10vw, 9.5rem); }
.intro-grid,
.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}
.section-kicker { color: var(--jade-soft); }
.intro-section h2,
.section-heading h2,
.menu-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}
.intro-copy { padding-top: 3.4rem; }
.intro-copy > p:first-child {
  margin: 0;
  color: #47534d;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.65;
}
.locations-section { padding-block: clamp(5rem, 9vw, 8rem); background: var(--cream); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-heading .section-kicker { margin-bottom: 0; }
.section-heading h2 { max-width: 710px; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}
.location-card {
  position: relative;
  min-height: 650px;
  padding: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
}
.location-card-dark { background: var(--jade); color: white; }
.location-card-light { background: var(--paper); }
.location-index {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: currentColor;
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: 1;
  opacity: 0.045;
}
.location-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.location-card h3 {
  max-width: 430px;
  margin: 0 0 auto;
  padding-bottom: 5rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.9vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.location-card address {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid currentColor;
  font-style: normal;
  opacity: 0.82;
}
.location-card address strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.location-card address span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.location-details {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1.5rem;
  margin: 0 0 2.8rem;
}
.location-details div { display: flex; flex-direction: column; gap: 0.55rem; }
.location-details dt {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.55;
  text-transform: uppercase;
}
.location-details dd { margin: 0; font-family: var(--serif); font-size: 1rem; line-height: 1.55; }
.location-details a { text-decoration-color: transparent; text-underline-offset: 0.25em; }
.location-details a:hover,
.location-details a:focus-visible { text-decoration-color: currentColor; }
.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-section {
  position: relative;
  padding-block: clamp(5rem, 11vw, 10rem);
  overflow: hidden;
  background: var(--ink-deep);
  color: white;
}
.menu-decoration {
  position: absolute;
  top: -0.15em;
  left: 3vw;
  color: white;
  font-family: var(--serif);
  font-size: min(42vw, 36rem);
  line-height: 1;
  opacity: 0.025;
}
.menu-grid { position: relative; z-index: 1; }
.section-kicker-light { color: var(--gold); }
.menu-section h2 { max-width: 700px; color: #f2ebdd; }
.menu-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}
.service-link > span:first-child { display: flex; flex-direction: column; gap: 0.4rem; }
.service-link small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.service-link strong { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 400; }
.service-arrow {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.service-link:hover .service-arrow,
.service-link:focus-visible .service-arrow { background: var(--cream); color: var(--ink); transform: translate(2px, -2px); }

.site-footer { padding-block: 2rem; background: #07110e; color: rgba(255, 255, 255, 0.66); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(480px, 1.8fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.brand-footer { color: white; }
.footer-locations {
  display: grid;
  gap: 0.75rem;
  padding-inline: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-locations address {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.65rem;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.045em;
  line-height: 1.55;
}
.footer-locations strong { color: white; font-family: var(--serif); font-size: 0.82rem; font-weight: 400; letter-spacing: 0; }
.footer-locations a { text-underline-offset: 0.25em; }
.footer-separator { color: var(--gold); }
.footer-copyright {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-align: right;
  text-transform: uppercase;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 88px; }
  .site-header[data-js-ready] .menu-toggle { display: block; justify-self: end; }
  .header-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    padding: 0.35rem var(--page-gutter) 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink-deep);
  }
  .site-header[data-js-ready] .header-menu {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .site-header[data-js-ready].menu-open .header-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .main-nav { display: grid; justify-self: stretch; gap: 0; }
  .main-nav a { padding-block: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .main-nav a::after { content: none; }
  .header-actions {
    display: grid;
    justify-self: stretch;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }
  .header-cta {
    min-height: 52px;
    justify-content: space-between;
    padding: 0.9rem 1.15rem;
  }
}

@media (max-width: 900px) {
  .hero { min-height: 820px; }
  .hero-media {
    background:
      linear-gradient(90deg, rgba(5, 15, 12, 0.91) 0%, rgba(5, 15, 12, 0.65) 60%, rgba(5, 15, 12, 0.38) 100%),
      linear-gradient(0deg, rgba(7, 16, 13, 0.76), transparent 55%),
      url("assets/hero-lecanardor-original.jpg") 62% center / cover no-repeat;
  }
  .intro-grid,
  .menu-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-copy { max-width: 650px; padding-top: 0; }
  .section-heading { display: block; }
  .section-heading .section-kicker { margin-bottom: 1.6rem; }
  .location-card { min-height: 590px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-locations {
    padding: 1.5rem 0;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .footer-copyright { text-align: left; }
}

@media (max-width: 680px) {
  .site-header { padding-inline: 1.1rem; }
  .header-menu { padding-inline: 1.1rem; }
  .brand-copy strong { max-width: 140px; line-height: 1.25; }
  .site-header .brand-copy small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .header-cta { gap: 0.45rem; font-size: 0.65rem; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 9rem; }
  .hero h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  .hero-intro { max-width: 95%; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; justify-content: space-between; }
  .hero-note { right: 1.25rem; bottom: 1.25rem; }
  .intro-section h2,
  .section-heading h2,
  .menu-section h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 560px; padding: 2.2rem 1.5rem; }
  .location-details { grid-template-columns: 1fr; }
  .footer-locations address { align-items: flex-start; }
  .footer-locations .footer-separator { display: none; }
  .footer-locations address > * { flex-basis: 100%; }
}

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