:root {
  --green-950: #071b13;
  --green-900: #0d2f20;
  --green-800: #17432c;
  --cream: #fff1d4;
  --cream-2: #f7dfac;
  --gold: #dca642;
  --gold-2: #f0c66a;
  --red: #a72b18;
  --red-2: #d24722;
  --ink: #16120d;
  --wood: #5a2d14;
  --muted-light: rgba(255, 241, 212, 0.74);
  --muted-dark: rgba(22, 18, 13, 0.68);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--green-950);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 8px clamp(16px, 3vw, 40px);
  background: rgba(7, 27, 19, 0.82);
  border-bottom: 1px solid rgba(255, 241, 212, 0.14);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  width: clamp(76px, 7vw, 104px);
  min-height: clamp(58px, 6vw, 78px);
  place-items: center;
  padding: 6px;
  background: linear-gradient(145deg, rgba(255, 241, 212, 0.16), rgba(255, 241, 212, 0.06));
  border: 1px solid rgba(240, 198, 106, 0.28);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-mark img {
  border-radius: 14px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.34));
}

.brand-mark:hover {
  background: linear-gradient(145deg, rgba(240, 198, 106, 0.24), rgba(255, 241, 212, 0.08));
  border-color: rgba(240, 198, 106, 0.58);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px);
}

.site-header nav,
.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
}

.site-header nav {
  justify-content: center;
  gap: clamp(12px, 2.4vw, 30px);
}

.site-header nav a,
.admin-link {
  color: rgba(255, 241, 212, 0.82);
  font-size: 14px;
  font-weight: 900;
}

.site-header nav a:hover,
.admin-link:hover,
.text-link:hover {
  color: var(--gold-2);
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.admin-link {
  padding: 10px 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 78px;
  min-height: 38px;
  padding: 4px;
  color: var(--cream);
  background: rgba(255, 241, 212, 0.1);
  border: 1px solid rgba(255, 241, 212, 0.18);
  border-radius: 15px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-toggle span {
  display: grid;
  width: 32px;
  height: 28px;
  place-items: center;
  border-radius: 11px;
}

.lang-toggle.is-en [data-lang-option="en"],
.lang-toggle.is-es [data-lang-option="es"] {
  color: var(--ink);
  background: var(--gold-2);
}

.social-rail {
  position: fixed;
  top: 50%;
  left: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.social-rail a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cream);
  background: linear-gradient(145deg, rgba(255, 241, 212, 0.16), rgba(255, 241, 212, 0.06));
  border: 1px solid rgba(240, 198, 106, 0.28);
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-rail a:hover {
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  border-color: rgba(240, 198, 106, 0.72);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  transform: translateX(5px);
}

.social-rail svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: clamp(104px, 11vw, 138px) clamp(18px, 5vw, 72px) 30px;
  background: var(--green-950);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 24px;
  border: 1px solid rgba(240, 198, 106, 0.24);
  z-index: 2;
}

.hero::after {
  right: -10vw;
  bottom: -28vw;
  width: 52vw;
  height: 52vw;
  background:
    repeating-linear-gradient(90deg, rgba(255, 241, 212, 0.08) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(0deg, rgba(255, 241, 212, 0.07) 0 1px, transparent 1px 54px);
  transform: rotate(-8deg);
  opacity: 0.42;
  z-index: 2;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 27, 19, 0.92), rgba(7, 27, 19, 0.66) 48%, rgba(7, 27, 19, 0.22)),
    linear-gradient(0deg, rgba(7, 27, 19, 0.78), rgba(7, 27, 19, 0.14) 52%, rgba(7, 27, 19, 0.42)),
    radial-gradient(circle at 26% 42%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.46) 62%);
  z-index: 1;
}

.hero-inner,
.hero-strip,
.quick-menu,
.menu-story,
.contact-band {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-badge {
  width: min(190px, 54vw);
  margin-bottom: 14px;
  padding: 8px;
  background: rgba(255, 241, 212, 0.1);
  border: 1px solid rgba(240, 198, 106, 0.3);
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}

.hero-inner {
  max-width: 760px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(34px, 3.8vw, 50px);
}

h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 66px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero-inner > p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.contact-band p,
.contact-cards dd {
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.65;
}

.hero-inner > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 14px;
  font-size: 17px;
}

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

.btn,
.text-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.btn {
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn.primary {
  color: var(--ink);
  background: var(--gold-2);
  box-shadow: 0 16px 38px rgba(220, 166, 66, 0.34);
}

.btn.secondary {
  color: var(--cream);
  background: var(--red);
  box-shadow: 0 16px 38px rgba(167, 43, 24, 0.38);
}

.btn:hover {
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.text-link {
  color: rgba(255, 241, 212, 0.82);
  padding: 0 6px;
}

.hero-strip {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 8vw, 92px);
  padding-top: 20px;
  border-top: 0;
}

.hero-strip span {
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 16px 18px;
  color: rgba(255, 241, 212, 0.82);
  background: linear-gradient(145deg, rgba(255, 241, 212, 0.13), rgba(255, 241, 212, 0.05));
  border: 1px solid rgba(240, 198, 106, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-strip span:hover {
  background: linear-gradient(145deg, rgba(240, 198, 106, 0.22), rgba(167, 43, 24, 0.14));
  border-color: rgba(240, 198, 106, 0.52);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.hero-visual {
  align-self: stretch;
  display: grid;
  align-items: center;
  min-height: 500px;
}

.hero-cover {
  width: min(540px, 100%);
  justify-self: end;
  aspect-ratio: 0.68 / 1;
  object-fit: cover;
  border: 1px solid rgba(240, 198, 106, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-note {
  position: absolute;
  right: min(3vw, 32px);
  bottom: clamp(24px, 5vw, 58px);
  display: grid;
  min-width: 190px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--cream);
  border: 4px solid var(--wood);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.menu-note span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-note strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.quick-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--gold);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.quick-menu a {
  display: grid;
  min-height: 178px;
  align-content: center;
  gap: 9px;
  padding: clamp(24px, 4vw, 44px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(7, 27, 19, 0.86), rgba(13, 47, 32, 0.96)),
    var(--green-900);
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-menu a:hover {
  background:
    linear-gradient(135deg, rgba(167, 43, 24, 0.82), rgba(13, 47, 32, 0.9)),
    var(--green-900);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.quick-menu span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-menu strong {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.quick-menu small {
  max-width: 320px;
  color: rgba(255, 241, 212, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.menu-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(76px, 10vw, 138px) clamp(18px, 6vw, 80px);
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 241, 212, 0.92), rgba(255, 241, 212, 0.92)),
    repeating-linear-gradient(45deg, rgba(167, 43, 24, 0.08) 0 1px, transparent 1px 24px);
}

.menu-story .eyebrow {
  color: var(--red);
}

.section-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted-dark);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: end;
}

.story-grid article {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(90, 45, 20, 0.24);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(22, 18, 13, 0.18);
}

.story-grid article:nth-child(2) {
  transform: translateY(42px);
}

.story-grid img,
.story-grid video {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
}

.story-grid div {
  padding: 18px;
  color: var(--cream);
}

.story-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-moments {
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  padding: clamp(76px, 9vw, 132px) clamp(18px, 6vw, 80px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.98), rgba(255, 241, 212, 0.94)),
    repeating-linear-gradient(135deg, rgba(13, 47, 32, 0.08) 0 1px, transparent 1px 26px);
}

.signature-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.signature-feature.is-reversed {
  grid-template-columns: minmax(340px, 1.05fr) minmax(280px, 0.95fr);
}

.signature-feature.is-reversed .signature-copy {
  order: 2;
}

.signature-feature.is-reversed .signature-photos {
  order: 1;
}

.signature-copy .eyebrow {
  color: var(--red);
}

.signature-copy h2 {
  max-width: 760px;
  color: var(--red);
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
}

.signature-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(22, 18, 13, 0.66);
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.55;
}

.signature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.signature-tags span {
  padding: 14px 20px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(167, 43, 24, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(90, 45, 20, 0.08);
  font-weight: 900;
}

.signature-photos {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
}

.signature-photos img {
  position: absolute;
  width: 76%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(22, 18, 13, 0.24);
}

.signature-main-photo {
  top: 0;
  right: 6%;
  height: 82%;
}

.signature-small-photo {
  right: 0;
  bottom: 0;
  width: 48% !important;
  height: 48%;
}

.signature-feature.is-reversed .signature-main-photo {
  right: auto;
  left: 6%;
}

.signature-feature.is-reversed .signature-small-photo {
  right: auto;
  left: 0;
}

.gallery-strip {
  overflow: hidden;
  padding: 18px 0 22px;
  background:
    radial-gradient(circle at 10% 50%, rgba(220, 166, 66, 0.18), transparent 32%),
    var(--green-950);
}

.strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: gallery-scroll 36s linear infinite;
}

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

.strip-track img {
  flex: 0 0 clamp(240px, 30vw, 460px);
  width: clamp(240px, 30vw, 460px);
  height: clamp(230px, 30vw, 400px);
  object-fit: cover;
  border: 1px solid rgba(240, 198, 106, 0.2);
  border-radius: 8px;
  filter: saturate(1.08) contrast(1.04);
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 76px);
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(110deg, rgba(7, 27, 19, 0.94), rgba(7, 27, 19, 0.8)),
    url("hidalgo-logo.png") center / cover;
}

.contact-band h2 {
  margin-bottom: 18px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-cards div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(255, 241, 212, 0.08);
  border: 1px solid rgba(255, 241, 212, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-cards div:hover {
  background: rgba(255, 241, 212, 0.12);
  border-color: rgba(240, 198, 106, 0.42);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.contact-cards dt {
  color: var(--gold-2);
  font-weight: 900;
}

.contact-cards dd {
  margin: 0;
}

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

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

  .site-header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .menu-story,
  .signature-feature,
  .signature-feature.is-reversed,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .signature-feature.is-reversed .signature-copy,
  .signature-feature.is-reversed .signature-photos {
    order: initial;
  }

  .hero {
    padding-top: 178px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-menu {
    grid-template-columns: 1fr;
  }

  .story-grid article:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .brand-mark {
    width: 68px;
  }

  .social-rail {
    left: 10px;
    gap: 7px;
  }

  .social-rail a {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .social-rail svg {
    width: 19px;
    height: 19px;
  }

  .site-header nav a,
  .admin-link {
    font-size: 13px;
  }

  .header-actions {
    gap: 6px;
  }

  .admin-link {
    padding-inline: 4px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 158px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .hero-inner > p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

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

  .signature-moments {
    padding-inline: 16px;
  }

  .signature-copy h2 {
    font-size: clamp(34px, 12vw, 56px);
  }

  .signature-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .signature-tags span {
    width: 100%;
    text-align: center;
  }

  .signature-photos {
    min-height: 390px;
  }

  .signature-photos img {
    border-width: 6px;
  }

  .signature-main-photo {
    right: 0;
    width: 88% !important;
  }

  .signature-small-photo {
    width: 58% !important;
  }

  .signature-feature.is-reversed .signature-main-photo {
    left: 0;
    width: 88% !important;
  }

  .strip-track img {
    flex-basis: 78vw;
    width: 78vw;
    height: 280px;
  }
}
