/*
Theme Name: Giordana v1
Theme URI: https://example.com/giordana-v1
Author: Giordana
Author URI: https://example.com
Description: A custom WordPress theme.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: giordana-v1
*/

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

:root {
  --bg: #181818;
  --bg2: #111111;
  --cream: #ebdcc4;
  --blush: #fabdbd;
  --white: #ffffff;
  --white70: rgba(255, 255, 255, 0.7);
  --white40: rgba(255, 255, 255, 0.4);
  --white10: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--cream);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--blush);
  margin-bottom: 36px;
  white-space: nowrap;
}

.hero-h1 em {
  font-style: italic;
  color: var(--cream);
}

.hero-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--white70);
  max-width: 440px;
  margin-bottom: 52px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}

.btn-primary {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--cream);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 40px;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-ghost {
  display: block;
  text-align: center;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* ─── HERO RIGHT / PHOTO ─── */
.hero-right {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: radial-gradient(circle at 75% 45%, #372a2c 0%, var(--bg) 70%);
  pointer-events: none;
}

.hero-img {
  height: 100vh;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: top right;
  display: block;
  z-index: 2;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 25%),
    linear-gradient(to left, var(--bg) 0%, transparent 15%);
  z-index: 3;
  pointer-events: none;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to top, var(--bg) 0%, transparent 25%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 15%);
  z-index: 3;
  pointer-events: none;
}

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0.2;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream);
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream);
}

/* ─── SECTION ─── */
section {
  padding: 120px 60px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--cream), transparent);
  opacity: 0.3;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--cream);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.marquee-item::after {
  content: '✦';
  font-size: 10px;
  opacity: 0.5;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── OFFERINGS ─── */
.offerings {
  background: #0d0c0c;
  padding: 100px 40px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card.featured {
  border: 1px solid rgba(250, 189, 189, 0.4);
}

.card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('assets/giordana_hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: rgba(13, 12, 12, 0.6);
}

.card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 24px;
  display: block;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
  min-height: 130px;
}

.card-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--blush);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.card-divider::before, .card-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: rgba(250, 189, 189, 0.2);
}

.card-divider::before { left: 0; }
.card-divider::after { right: 0; }

.card-divider svg {
  width: 12px;
  height: 12px;
  color: var(--blush);
}

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white70);
  margin-bottom: 30px;
  min-height: 135px;
}

.card-benefits {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--white70);
}

.card-benefits svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--blush);
  flex-shrink: 0;
  background: rgba(250, 189, 189, 0.1);
  border-radius: 50%;
  padding: 2px;
  margin-top: 2px;
}

.card-footer {
  margin-top: auto;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 24px;
}

.card-price span {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  opacity: 0.6;
}

.card-link {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream);
  transition: opacity 0.2s;
  width: 100%;
}

.card-link:hover {
  opacity: 0.7;
}

.offerings-bottom {
  text-align: center;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.offerings-bottom-p1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
}

.offerings-bottom-p2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-bottom: 24px;
}

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

/* ─── SHOP PROMO REDESIGN ─── */
.shop-promo {
  padding: 120px 60px;
  background: var(--bg2);
  border-top: 1px solid var(--white10);
  border-bottom: 1px solid var(--white10);
}

.shop-promo-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--blush);
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}

.shop-promo-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px auto;
}

.shop-promo-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 32px;
  display: block;
}

.shop-promo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.shop-promo-title em {
  font-style: italic;
  color: var(--cream);
}

.shop-promo-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--white70);
}

/* Shop Grid */
.shop-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

/* Card Design */
.shop-promo-card {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-promo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 220, 196, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.shop-promo-card-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #111;
}

.shop-promo-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-promo-card:hover .shop-promo-card-image {
  transform: scale(1.04);
}

.shop-promo-card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-promo-card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 12px;
  display: inline-block;
}

/* Star Rating */
.shop-promo-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-promo-stars {
  color: #ebdcc4;
  /* cream gold */
  letter-spacing: 1px;
  font-size: 13px;
}

.shop-promo-rating-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.shop-promo-reviews {
  font-size: 11px;
  color: var(--white40);
}

.shop-promo-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--white);
}

.shop-promo-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--white70);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Benefits Checklist */
.shop-promo-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.shop-promo-benefits li {
  font-size: 13px;
  color: var(--white80);
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.shop-promo-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blush);
  font-weight: bold;
  font-size: 14px;
}

.shop-promo-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-promo-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}

.shop-promo-card-price span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--white40);
  font-weight: 400;
}

.btn-shop-promo-card {
  display: inline-block;
  background: var(--cream);
  color: #000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-shop-promo-card:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* Section Footer CTA */
.shop-promo-footer {
  text-align: center;
}

.btn-shop-promo-all {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 48px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-shop-promo-all:hover {
  background: var(--cream);
  color: #000;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .shop-promo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .shop-promo {
    padding: 80px 24px;
  }

  .shop-promo-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shop-promo-card-content {
    padding: 24px 20px;
  }

  .btn-shop-promo-all {
    width: 100%;
    padding: 20px 24px;
  }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--bg);
  padding-top: 80px;
  padding-bottom: 30px;
}

.testi-heading-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.testi-big-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--blush);
  margin-bottom: 12px;
}

.testi-sub {
  font-size: 14px;
  color: var(--white40);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.testi-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-img-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(235, 220, 196, 0.10);
  transition: border-color 0.4s, transform 0.4s;
}

.testi-img-item:hover {
  border-color: rgba(250, 189, 189, 0.35);
  transform: translateY(-3px);
}

.testi-img-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.testi-img-item:hover img {
  transform: scale(1.02);
}

.btn-readall {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: transparent;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 20px 48px;
  border: 1px solid rgba(235, 220, 196, 0.4);
  transition: all 0.3s;
}

.btn-readall:hover {
  background: var(--cream);
  color: #000;
  border-color: var(--cream);
}

/* ─── INSTAGRAM ─── */
.instagram-section {
  padding: 30px 60px 100px;
  background: var(--bg2);
}

.insta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.insta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
}

.insta-heading em {
  font-style: italic;
  color: var(--blush);
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 12px 24px;
  border: 1px solid rgba(235, 220, 196, 0.3);
  transition: all 0.3s;
}

.insta-handle:hover {
  background: var(--cream);
  color: #000;
}

.insta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insta-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--white10);
  transition: border-color 0.3s, transform 0.3s;
}

.insta-card:hover {
  border-color: rgba(250, 189, 189, 0.35);
  transform: translateY(-3px);
}

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

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

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-card:hover .insta-card-overlay {
  opacity: 1;
}

.insta-card-overlay span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blush);
}

/* ─── MEDIA QUERIES ─── */
.about {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  scroll-margin-top: 0px;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background: radial-gradient(circle at 50% 50%, #3a2e30 0%, var(--bg2) 80%);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  z-index: 2;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to bottom, var(--bg2) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25%;
  background: linear-gradient(to left, var(--bg2) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.about-content {
  padding: 120px 80px 120px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 28px;
}

.about-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.about-h2 em {
  font-style: italic;
  color: var(--cream);
}

.about-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--white70);
  margin-bottom: 20px;
}

.about-stat-row {
  display: flex;
  gap: 48px;
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--white10);
  border-bottom: 1px solid var(--white10);
}

.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-story {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-story:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--white40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--cream);
  color: #000;
  text-align: center;
  padding: 120px 60px;
}

.final-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 28px;
}

.final-cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  max-width: 760px;
  margin: 0 auto 20px;
}

.final-cta-h2 em {
  font-style: italic;
}

.final-cta-sub {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.6);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.btn-dark {
  display: inline-block;
  text-decoration: none;
  background: #000;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 22px 56px;
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.8;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #060606;
  padding: 100px 5% 40px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

.footer-col h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 16px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.4s ease;
}

.footer-socials a:hover {
  background: var(--blush);
  border-color: var(--blush);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-contact-link {
  color: var(--blush);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-contact-link:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-disclaimer {
  font-size: 11px;
  color: #444;
  line-height: 1.5;
  max-width: 600px;
}

/* ─── MODAL / POPUP ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 10000;
}

.modal-content {
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 4px;
  right: 26px;
  background: none;
  border: none;
  color: var(--white70);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px;
}

.modal-close:hover {
  color: var(--cream);
}

.modal-content form input,
.modal-content form textarea,
.modal-content form select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--white10);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
  outline: none;
  border-color: var(--cream);
}

.modal-content form button,
.modal-content form input[type="submit"] {
  display: inline-block;
  background: var(--cream);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}

.modal-content form button:hover,
.modal-content form input[type="submit"]:hover {
  opacity: 0.88;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 100vh;
  }

  .hero-left {
    padding: 120px 24px 60px;
  }

  .hero-right {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #372a2c 0%, var(--bg) 70%);
  }

  .hero-right::before {
    background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
    z-index: 3;
    pointer-events: none;
  }

  .hero-right::after {
    display: none;
  }

  .hero-img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: top center;
    margin-right: 0;
    transform: none;
  }

  section {
    padding: 80px 24px;
  }

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

  .testi-img-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testi-big-heading {
    font-size: 42px;
  }

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

  .about-img-wrap {
    min-height: 480px;
  }

  .about-img-wrap::after {
    width: 100%;
    height: 25%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, var(--bg2) 0%, transparent 100%);
  }

  .about-content {
    padding: 60px 24px;
  }

  .about-stat-row {
    gap: 32px;
  }

  .about-buttons {
    flex-direction: column;
  }

  .instagram-section {
    padding: 60px 24px;
  }

  .insta-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .insta-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-h1-line2 {
    display: block;
  }

  .offerings {
    padding: 60px 24px;
  }

  .about-buttons .btn-primary {
    max-width: none;
  }
}
