:root {
  --emerald: #0d3b32;
  --emerald-dark: #082a24;
  --emerald-mid: #134e41;
  --emerald-light: #d8ebe3;
  --gold: #c5a04d;
  --gold-light: #dfc98a;
  --gold-dark: #a8863a;
  --white: #ffffff;
  --gray-dark: #2a2a2a;
  --gray-900: #1a1a1a;
  --gray-600: #6b7c76;
  --gray-100: #eef2f0;
  --gray-50: #f7faf8;
  --shadow: 0 16px 48px rgba(8, 42, 36, 0.18);
  --shadow-gold: 0 8px 24px rgba(197, 160, 77, 0.25);
  --radius: 12px;
  --transition: 0.25s ease;
  --font-heading: "Cinzel", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Wave dividers */
.wave {
  color: var(--emerald-light);
  line-height: 0;
}

.wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.wave--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  color: var(--white);
}

.wave--bottom svg {
  height: 80px;
}

.wave--section {
  color: var(--emerald-light);
  margin-top: -1px;
}

.wave--flip {
  transform: scaleY(-1);
}

.wave--footer {
  color: var(--emerald-dark);
  margin-bottom: -1px;
}

.wave--footer svg {
  height: 50px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  width: auto;
  height: auto;
}

.logo__img--header {
  height: 56px;
}

.logo__img--about {
  width: min(200px, 75%);
  margin: 0 auto 1.25rem;
  border-radius: 8px;
}

.logo__img--footer {
  height: 80px;
}

.surface-dark {
  --surface-emerald: var(--white);
}

.surface-dark .section__eyebrow:not(.section__eyebrow--light) {
  color: var(--gold-light);
}

.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark .logo__name {
  color: var(--white);
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--emerald);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--emerald-dark);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

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

.btn--emerald:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
}

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

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(145deg, var(--emerald-dark) 0%, var(--emerald) 55%, var(--emerald-mid) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__facade {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__facade img {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(62%, 780px);
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0;
  transform: translateY(-50%) scale(1.04);
  animation: heroFacadeReveal 1.6s ease-out 0.1s forwards;
  -webkit-mask-image: linear-gradient(to right, #000 52%, transparent 100%);
  mask-image: linear-gradient(to right, #000 52%, transparent 100%);
}

@keyframes heroFacadeReveal {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(1.06);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(8, 42, 36, 0.62) 0%,
      rgba(8, 42, 36, 0.88) 34%,
      rgba(13, 59, 50, 0.52) 58%,
      rgba(13, 59, 50, 0.12) 100%
    ),
    radial-gradient(circle at 15% 15%, rgba(197, 160, 77, 0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.04), transparent 35%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.hero__featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 420px;
  width: 100%;
  justify-self: end;
  text-align: center;
}

.hero__spotlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0 0 0.35rem;
  width: 100%;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  position: relative;
  padding-bottom: 0.65rem;
}

.hero__spotlight-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(120px, 40%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.hero__carousel-viewport {
  min-width: 0;
}

.hero__carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 77, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.hero__carousel-btn:hover:not(:disabled) {
  background: rgba(197, 160, 77, 0.2);
  border-color: var(--gold);
}

.hero__carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.hero__carousel-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero__carousel-dots {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.hero__carousel-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

.hero__carousel-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.hero__promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.hero__promo-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__promo-badge--yes {
  background: linear-gradient(135deg, #c5a04d 0%, #e8c872 100%);
  color: var(--emerald);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(197, 160, 77, 0.35);
}

.hero__promo-discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: #b42318;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(180, 35, 24, 0.45);
}

.hero__price-box--promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  margin: 0.25rem 0 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(197, 160, 77, 0.12);
  border: 1px solid rgba(197, 160, 77, 0.35);
}

.hero__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.hero__price-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.hero__price-value--old {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.hero__price-value--promo {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero__price-row--new .hero__price-label {
  color: var(--gold-light);
}

.hero__card.hero__card--promo {
  border-color: rgba(197, 160, 77, 0.55);
  box-shadow: 0 0 0 1px rgba(197, 160, 77, 0.15), 0 8px 24px rgba(0, 0, 0, 0.2);
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero__content > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 160, 77, 0.3);
}

.hero__stats li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.hero__stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.hero__card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 77, 0.35);
  border-radius: var(--radius);
  padding: 1.25rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}

.hero__card-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.hero__card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero__card-image--emoji {
  font-size: 2.75rem;
}

.hero__card-btn {
  margin-top: auto;
  width: 100%;
}

.hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero__card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.hero__card-price span {
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 0.5rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.hero__card-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero__card-note {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--emerald-light);
}

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section__eyebrow--light {
  color: var(--gold-light);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__header--left {
  text-align: left;
  margin-left: 0;
}

.section__header h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--gray-600);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.cards--services {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card--service {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card--service:hover .card__media img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
}

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

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--emerald);
}

.card__icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--emerald);
}

.card p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Filters & Products */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filters[hidden] {
  display: none;
}

.filter {
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  border: 1px solid rgba(13, 59, 50, 0.2);
  background: var(--white);
  color: var(--emerald);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
}

.filter:hover,
.filter.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

.product-search {
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.product-search__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.product-search__field {
  position: relative;
  display: flex;
  align-items: center;
}

.product-search__icon {
  position: absolute;
  left: 1rem;
  color: var(--gray-600);
  pointer-events: none;
}

.product-search__input {
  width: 100%;
  padding: 0.85rem 2.5rem 0.85rem 2.75rem;
  border: 1px solid rgba(13, 59, 50, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--emerald);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.product-search__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 77, 0.2);
}

.product-search__clear {
  position: absolute;
  right: 0.65rem;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.product-search__clear:hover {
  background: var(--emerald-light);
  color: var(--emerald);
}

.product-search__hint {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray-600);
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .products {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.products-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 59, 50, 0.08);
}

.products-pagination__btn {
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(13, 59, 50, 0.15);
  border-radius: 4px;
  background: var(--white);
  color: var(--emerald);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.products-pagination__btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--emerald-light);
}

.products-pagination__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.products-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.products-pagination__page {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.5rem;
  border: 1px solid rgba(13, 59, 50, 0.12);
  border-radius: 4px;
  background: var(--white);
  color: var(--emerald);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.products-pagination__page:hover {
  border-color: var(--gold);
}

.products-pagination__page.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

.products-pagination__info {
  width: 100%;
  margin: 0.25rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.products-pagination__ellipsis {
  padding: 0 0.15rem;
  color: var(--gray-600);
  user-select: none;
}

.product {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(13, 59, 50, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product__image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem;
  font-size: 3rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--emerald-light) 100%);
  border-bottom: 1px solid rgba(13, 59, 50, 0.06);
}

.product__body {
  padding: 1.25rem;
}

.product__category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 600;
}

.product h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin: 0.35rem 0 0.5rem;
  color: var(--emerald);
}

.product__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.product__btn {
  width: 100%;
  padding: 0.65rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--emerald);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.product__btn:hover {
  background: var(--gold);
  color: var(--emerald-dark);
}

.product.hidden {
  display: none;
}

/* Banner */
.banner {
  background: var(--gray-dark);
  color: var(--white);
  padding: 4rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.banner p {
  color: rgba(255, 255, 255, 0.72);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about h2 {
  font-size: 2rem;
  color: var(--emerald);
  margin-bottom: 1rem;
}

.about p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about__list {
  list-style: none;
  margin-top: 1.5rem;
}

.about__list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--gray-900);
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.about__visual {
  display: grid;
  place-items: center;
}

.about__box {
  background: linear-gradient(160deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(197, 160, 77, 0.3);
}

.about__box span {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.about__box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--emerald);
}

.form input,
.form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(13, 59, 50, 0.15);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 77, 0.15);
}

.form__feedback {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.form__feedback.success {
  background: var(--white);
  color: var(--emerald);
  border: 1px solid var(--gold);
}

.form__feedback.error {
  background: #fdecea;
  color: #b42318;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

.info-block p,
.info-block a {
  color: var(--gray-600);
}

.info-block a:hover {
  color: var(--gold-dark);
}

.hours {
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  color: var(--gray-600);
  border-bottom: 1px solid rgba(13, 59, 50, 0.08);
  font-size: 0.9rem;
}

.hours__highlight {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--emerald);
}

.hours__highlight span:last-child {
  color: var(--gold-dark);
}

/* Footer */
.footer {
  background: var(--emerald-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__facade img {
    left: 0;
    top: 50%;
    bottom: auto;
    width: 58%;
    height: 100%;
    transform: translateY(-50%) scale(1.04);
    object-position: left center;
    -webkit-mask-image: linear-gradient(to right, #000 58%, transparent 100%);
    mask-image: linear-gradient(to right, #000 58%, transparent 100%);
    animation-name: heroFacadeRevealMobile;
  }

  @keyframes heroFacadeRevealMobile {
    from {
      opacity: 0;
      transform: translateY(-50%) scale(1.06);
    }
    to {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }
  }

  .hero__overlay {
    background:
      linear-gradient(
        to right,
        rgba(8, 42, 36, 0.72) 0%,
        rgba(8, 42, 36, 0.88) 42%,
        rgba(13, 59, 50, 0.35) 68%,
        rgba(13, 59, 50, 0.08) 100%
      ),
      radial-gradient(circle at 15% 15%, rgba(197, 160, 77, 0.1), transparent 40%);
  }

  .landing-hero .hero__overlay {
    background:
      linear-gradient(
        to right,
        rgba(8, 42, 36, 0.72) 0%,
        rgba(8, 42, 36, 0.88) 42%,
        rgba(13, 59, 50, 0.35) 68%,
        rgba(13, 59, 50, 0.08) 100%
      ),
      radial-gradient(circle at 15% 15%, rgba(197, 160, 77, 0.12), transparent 42%);
  }

  .hero__grid,
  .about,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__featured {
    max-width: 100%;
    justify-self: stretch;
  }

  .hero__card {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 68px;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--gold);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__cta {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .logo__img--header {
    height: 46px;
  }
}
