/* ============================================================
   SES Equine — styles.css
   Palette: Near-Black / Gold / White  (luxury edition)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #06080B;
  --surface:     #0C1018;
  --card:        #111820;
  --card-hover:  #161F2C;
  --gold:        #C8A951;
  --gold-light:  #D8BC6E;
  --gold-dim:    rgba(200, 169, 81, 0.12);
  --gold-border: rgba(200, 169, 81, 0.25);
  --gold-hover:  #A8893A;
  --white:       #FFFFFF;
  --text:        #D8D4CC;
  --muted:       #6E7A8A;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:       1180px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.18;
  font-weight: 700;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.section-intro {
  max-width: 600px;
  color: var(--muted);
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding-block: clamp(5rem, 10vw, 7.5rem);
}

.section-dark {
  background-color: var(--surface);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Thin gold rule above centered headings */
.section-header .section-eyebrow {
  justify-content: center;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: #06080B;
  border: 1px solid var(--gold);
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,169,81,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- NAVIGATION ---------- */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 1.4rem;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition),
              padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav-header.scrolled {
  background: rgba(6, 8, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,169,81,0.15);
  border-color: rgba(200,169,81,0.12);
  padding-block: 0.85rem;
}

.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.1em;
}

.logo-ses    { color: var(--gold); }
.logo-equine { color: var(--white); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216,212,204,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-color: var(--bg);
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6,8,11,0.55) 0%,
      rgba(6,8,11,0.45) 40%,
      rgba(6,8,11,0.72) 75%,
      rgba(6,8,11,0.95) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-inline: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
  background: rgba(200,169,81,0.06);
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(216,212,204,0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.6rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--gold-border);
}

.stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- REVIEWS ---------- */
.reviews-section {
  padding: 5rem 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-carousel {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  min-width: 100%;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
}

.review-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.review-slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.review-slide cite {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0.04em;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.review-prev,
.review-next {
  background: none;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-prev:hover,
.review-next:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.review-dots {
  display: flex;
  gap: 0.5rem;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
  padding: 0;
}

.review-dot.active {
  background: var(--gold);
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-text .section-eyebrow { justify-content: flex-start; }
.about-text .section-eyebrow::before { display: none; }

.about-text p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border);
}

.about-profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.about-profile-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.about-profile-text span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Placeholder */
.img-placeholder {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--gold-border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.img-placeholder::after {
  content: 'Add your photo here';
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.img-placeholder img { display: none; }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.services-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  max-width: 820px;
}

.service-card {
  background: var(--card);
  padding: 2.2rem 2rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--card-hover);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0.85;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- ORDER INQUIRY ---------- */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.order-intro .section-eyebrow { justify-content: flex-start; }
.order-intro .section-eyebrow::before { display: none; }

.order-intro > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.order-sizes-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.order-sizes ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.order-sizes li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.size-chip {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  min-width: 56px;
  text-align: center;
}

.order-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 1rem 1.2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-dim);
}

.order-delivery-note svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* Form shell */
.order-form {
  background: var(--card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.req { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 0.7rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A951' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}

.form-group select option {
  background: var(--card);
  color: var(--white);
}

/* Radio buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.radio-option:hover {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
  transition: border-color var(--transition);
}

.radio-box::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.radio-option input[type="radio"]:checked ~ .radio-box {
  border-color: var(--gold);
}

.radio-option input[type="radio"]:checked ~ .radio-box::after {
  opacity: 1;
}

.radio-option input[type="radio"]:checked ~ .radio-label {
  color: var(--white);
}

.radio-option:has(input:checked) {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

.radio-label {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
  transition: color var(--transition);
}

.radio-label small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Submit row */
.form-submit {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Success state */
.form-success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(100,200,100,0.25);
  border-radius: var(--radius);
  background: rgba(100,200,100,0.06);
  margin-top: 1.2rem;
  color: #8dcf8d;
  font-size: 0.95rem;
}

/* Meet-location reveal */
#meet-location-wrap {
  animation: slideDown 0.28s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Order responsive */
@media (max-width: 860px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Make first item span 2 rows for visual interest */
.gallery-item:first-child {
  grid-row: span 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.88) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,8,11,0.92) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2rem 1.2rem 1rem;
  transform: translateY(100%);
  transition: transform 0.38s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-item.img-placeholder { aspect-ratio: 4/3; }
.gallery-item.img-placeholder::after { content: 'Add your photo here'; }

/* ---------- FORMS ---------- */
.forms-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.forms-list {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.forms-list li {
  border-bottom: 1px solid var(--gold-border);
}

.forms-list li:last-child {
  border-bottom: none;
}

.forms-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: var(--card);
  color: var(--gold-light);
  font-size: 0.97rem;
  transition: background var(--transition), color var(--transition);
}

.forms-list a::after {
  content: '↗';
  font-size: 0.85rem;
  opacity: 0.6;
}

.forms-list a:hover {
  background: var(--card-hover);
  color: var(--white);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info .section-eyebrow { justify-content: flex-start; }
.contact-info .section-eyebrow::before { display: none; }

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2.4rem;
  font-size: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-list li:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.02rem;
  color: var(--white);
  font-weight: 300;
  transition: color var(--transition);
}

a.contact-value:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
}

.contact-map iframe {
  display: block;
  width: 100%;
  filter: grayscale(30%) brightness(0.75) contrast(1.1);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
}

.footer-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

.footer-social-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--muted);
  border: 1px solid var(--gold-border);
  padding: 0.6rem 1.1rem;
  border-radius: 2px;
  transition: color var(--transition), border-color var(--transition),
              background var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-copy {
  text-align: center;
  padding-block: 1.4rem;
}

.footer-copy p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- SCROLL FADE-IN ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.08s; }
.services-grid .fade-in:nth-child(5) { transition-delay: 0.16s; }
.services-grid .fade-in:nth-child(6) { transition-delay: 0.24s; }

.gallery-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .fade-in:nth-child(4) { transition-delay: 0.04s; }
.gallery-grid .fade-in:nth-child(5) { transition-delay: 0.12s; }
.gallery-grid .fade-in:nth-child(6) { transition-delay: 0.2s; }

.stats-grid .stat-item:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 0.24s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) {
    border-top: 1px solid var(--gold-border);
    border-right: 1px solid var(--gold-border);
  }
  .stat-item:nth-child(4) { border-top: 1px solid var(--gold-border); }
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-image-wrap::before {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 80vw);
    background: var(--surface);
    border-left: 1px solid var(--gold-border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-top: 1px solid var(--gold-border) !important;
  }

  .stat-item:first-child {
    border-top: none !important;
  }
}
