/* === VINOTRH WINE TRUCK — Landing Page === */

:root {
  --color-dark:       #3D1A1A;
  --color-primary:    #6B2D2D;
  --color-mid:        #8B4545;
  --color-light:      #B07070;
  --color-bg-section: #F5EDE8;
  --color-cream:      #FBF5EE;
  --color-white:      #FFFFFF;
  --color-text:       #1A0F0F;
  --color-text-light: #5C2E2E;
  --color-gold:       #C4A45C;

  --font-display: 'Barlow', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:     2px;
  --transition: 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === FADE IN === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5%;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.is-scrolled {
  background: rgba(61, 26, 26, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1rem 5%;
}

.nav__logo img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--color-white); }

.nav__cta {
  color: var(--color-white) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  padding: 0.5rem 1.4rem;
  transition: all var(--transition) !important;
}

.nav__cta:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.7) !important;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/bg/vineyard_bg.jpg');
  background-size: cover;
  background-position: center bottom;
  will-change: transform;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(61, 26, 26, 0.84) 0%,
    rgba(107, 45, 45, 0.52) 55%,
    rgba(61, 26, 26, 0.28) 100%
  );
}

/* Decorative watermark */
.hero__deco {
  position: absolute;
  bottom: -4rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(9rem, 22vw, 22rem);
  font-weight: 900;
  color: rgba(255,255,255,0.038);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
}

/* Vertical gold accent line */
.hero::before {
  content: '';
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30vh;
  background: linear-gradient(to bottom, transparent, rgba(196, 164, 92, 0.5), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5% 0 calc(5% + 2.75rem);
  max-width: 740px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 0.95;
  margin-bottom: 2.25rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.hero__headline em {
  font-style: normal;
  color: rgba(255,255,255,0.4);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.75rem;
  max-width: 460px;
  line-height: 1.78;
  font-weight: 300;
}

.hero__tags {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__tag {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.08em;
}

.hero__tag::after {
  content: ' · ';
  margin: 0 0.5rem;
  opacity: 0.35;
}
.hero__tag:last-child::after { display: none; }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-bg-section);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.38);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.72);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 17px;
  animation: bounce 2.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* === SECTION SHARED === */
.section { padding: 7rem 5%; }

.section__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section__label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section__lead {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 520px;
  line-height: 1.82;
  font-weight: 300;
}

/* === ABOUT === */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(107, 45, 45, 0.12);
}

.feature-card {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(107, 45, 45, 0.12);
}

.feature-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-light);
  line-height: 1;
  padding-top: 0.1rem;
  opacity: 0.6;
}

.feature-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.feature-card__text {
  font-size: 0.83rem;
  color: var(--color-text-light);
  line-height: 1.6;
  font-weight: 300;
}

.about__visual {
  position: relative;
  padding-top: 2.5rem;
}

.about__visual::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1.5rem;
  width: calc(100% - 1.5rem);
  height: calc(100% - 1rem);
  border: 1px solid rgba(107, 45, 45, 0.18);
  pointer-events: none;
}

.about__img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  height: auto;
  display: block;
}

.about__badge {
  position: absolute;
  bottom: 2rem;
  left: -2.5rem;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.25rem 1.75rem;
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--color-gold);
  letter-spacing: -0.02em;
}

.about__badge span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* === MENU === */
.menu-section {
  background: var(--color-bg-section);
  padding: 7rem 5%;
}

.menu-header {
  margin-bottom: 4rem;
}

.menu-section .section__label { color: var(--color-gold); }
.menu-section .section__label::before { background: var(--color-gold); }
.menu-section .section__title { color: var(--color-dark); }
.menu-section .section__lead { color: var(--color-text-light); margin-bottom: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(107, 45, 45, 0.14);
}

.menu-category {
  padding: 2.75rem 2.25rem;
  border-right: 1px solid rgba(107, 45, 45, 0.14);
}

.menu-category:last-child { border-right: none; }

.menu-cat__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 45, 45, 0.16);
  letter-spacing: -0.01em;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(107, 45, 45, 0.08);
}

.menu-item:last-child { border-bottom: none; }

.menu-item--divider {
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(107, 45, 45, 0.18);
}

.menu-item__name {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.45;
}

.menu-item__name em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--color-text-light);
  opacity: 0.7;
  margin-left: 0.2rem;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-category:nth-child(2) { border-right: none; }
  .menu-category:nth-child(3) {
    border-top: 1px solid rgba(107, 45, 45, 0.14);
    border-right: 1px solid rgba(107, 45, 45, 0.14);
  }
  .menu-category:nth-child(4) { border-top: 1px solid rgba(107, 45, 45, 0.14); }
}

@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-category { border-right: none !important; border-top: 1px solid rgba(107, 45, 45, 0.14); }
  .menu-category:first-child { border-top: none; }
}

/* === GALLERY === */
.gallery-section {
  background: var(--color-dark);
  padding: 7rem 5%;
}

.gallery-section .section__label { color: var(--color-gold); }
.gallery-section .section__label::before { background: var(--color-gold); }
.gallery-section .section__title { color: var(--color-white); }
.gallery-section .section__lead  { color: rgba(255,255,255,0.48); }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-header .btn--outline {
  border-color: rgba(255,255,255,0.22);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.gallery-grid__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(61, 26, 26, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}

.gallery-grid__item:hover::after { background: rgba(61, 26, 26, 0.45); }

.gallery-grid__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-grid__zoom svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.gallery-grid__item:hover .gallery-grid__zoom { opacity: 1; }

.gallery-grid__item:nth-child(1) { grid-column: span 7; }
.gallery-grid__item:nth-child(2) { grid-column: span 5; }
.gallery-grid__item:nth-child(3) { grid-column: span 4; }
.gallery-grid__item:nth-child(4) { grid-column: span 4; }
.gallery-grid__item:nth-child(5) { grid-column: span 4; }

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-grid__item:hover img { transform: scale(1.05); }

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 8, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  color: #fff;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.16);
  transform: rotate(90deg);
}

.lightbox__close svg { width: 1.25rem; height: 1.25rem; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  color: #fff;
}

.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next { right: 1.5rem; }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox__nav svg { width: 1.25rem; height: 1.25rem; }

.lightbox__caption {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}

.lightbox__counter {
  position: absolute;
  top: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* === CONTACT === */
.contact-section {
  background: var(--color-bg-section);
  padding: 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}

.contact-left {
  background: var(--color-dark);
  padding: 7rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-left::after {
  content: 'WINE';
  position: absolute;
  bottom: -3rem;
  left: -1rem;
  font-family: var(--font-display);
  font-size: 13rem;
  font-weight: 900;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.contact-left .section__label { color: var(--color-gold); }
.contact-left .section__label::before { background: var(--color-gold); }
.contact-left .section__title { color: var(--color-white); }
.contact-left .section__lead { color: rgba(255,255,255,0.55); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-item__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__icon svg { width: 18px; }

.contact-item__label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
}

.contact-item__value a:hover { color: var(--color-white); }
.contact-item__value small {
  display: block;
  font-size: 0.78rem;
  opacity: 0.55;
  margin-top: 0.2rem;
}

.btn--nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.btn--nav:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.contact-right {
  background: var(--color-cream);
  padding: 7rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form { display: flex; flex-direction: column; }

.form-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(107, 45, 45, 0.18);
  padding: 1.25rem 0;
  transition: border-color var(--transition);
}

.form-group:first-child { border-top: 1px solid rgba(107, 45, 45, 0.18); }

.form-group:focus-within { border-color: var(--color-primary); }

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0;
  border: none;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: transparent;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 45, 45, 0.32);
  font-weight: 300;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.65;
}

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  align-self: flex-start;
  margin-top: 2.5rem;
}

.btn--dark:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61,26,26,0.22);
}

/* === CONTACT MAP === */
.contact-map {
  width: 100%;
  line-height: 0;
  border-top: 1px solid rgba(61, 26, 26, 0.18);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(25%) contrast(1.05);
}

@media (max-width: 600px) {
  .contact-map iframe { height: 260px; }
}

/* === FOOTER === */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.38);
  padding: 2.5rem 5%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social a {
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.footer__social a:hover { color: rgba(255,255,255,0.85); }

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__logo img {
  height: 26px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__copy { font-size: 0.73rem; text-align: right; }

.footer__copy a { color: rgba(255,255,255,0.35); }
.footer__copy a:hover { color: rgba(255,255,255,0.65); }

/* === HAMBURGER === */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
  position: relative;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.82);
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE MENU === */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}

.nav__mobile.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.nav__mobile ul a {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.nav__mobile ul a:hover { color: var(--color-gold); }

.nav__mobile__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav__mobile__close:hover {
  background: rgba(255,255,255,0.16);
  transform: rotate(90deg);
}

.nav__mobile__close svg { width: 1.25rem; height: 1.25rem; }

.nav__mobile__cta {
  margin-top: 3rem;
  border-color: rgba(255,255,255,0.3) !important;
  font-size: 0.78rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about { gap: 4rem; }
  .about__visual::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; min-height: auto; }
  .contact-left { padding: 5rem 5%; }
  .contact-right { padding: 5rem 5%; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { left: 1rem; }
  .gallery-grid__item:nth-child(n) { grid-column: span 6; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .footer__right { align-items: center; }
  .footer__copy { text-align: center; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .gallery-grid__item:nth-child(n) { grid-column: span 1; }
  .gallery-grid__item:nth-child(1) { grid-column: span 2; }
  .hero { padding-top: 5rem; align-items: flex-start; padding-bottom: 3rem; }
  .hero__content { padding: 0 5%; }
  .hero::before { display: none; }
  .about__badge { left: 0.5rem; }
}
