/* =============================================
   8 FLORA – Dark / Black Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --black:       #080808;
  --surface:     #111111;
  --card:        #181818;
  --border:      #2a2a2a;
  --border-mid:  #3a3a3a;
  --white:       #ffffff;
  --cream:       #f5f0eb;
  --gold:        #c9a96e;
  --gold-light:  #e8d5a3;
  --text:        #e0dbd5;
  --text-mid:    #888;
  --text-dim:    #484848;
  --serif:       'Cormorant Garamond', serif;
  --sans:        'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--black);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 9px 24px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 101;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.site-header.scrolled { border-color: rgba(201,169,110,0.25); }

/* Make announcement bar + header stick together */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}

/* ── Header: Logo icon left | Logo2+links stacked centre | CTA right ── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 44px;
  height: 215px;
}

/* Small icon logo — far left */
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 207px;
  width: auto;
  object-fit: contain;
}

/* Centre column: Logo2 on top, nav links below */
.nav-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

/* Large wordmark — top of centre */
.nav-logo2 { display: flex; align-items: center; justify-content: center; }
.nav-logo2 img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* All nav links in one row — below Logo2 */
.nav-links-left,
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
/* Combined into one row via .nav-links-row wrapper */
.nav-links-row {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links-row > li { position: relative; }
.nav-links-row > li > a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links-row > li > a:hover,
.nav-links-row > li > a.active { color: var(--white); border-color: var(--gold); }

/* Legacy .nav-links (inner pages fallback) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); border-color: var(--gold); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  padding: 10px 0;
  z-index: 200;
}
.nav-links-row > li:hover .dropdown,
.nav-links > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
}
.dropdown a:hover { color: var(--white); }
.dropdown-heading {
  padding: 14px 24px 4px;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold);
  pointer-events: none;
  text-transform: uppercase;
}

.nav-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-cta {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--text-mid); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99;
  padding: 110px 40px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 26px; right: 36px;
  font-size: 28px; cursor: pointer;
  background: none; border: none; color: var(--text-mid);
}

/* =============================================
   PAGE OFFSET  (36px bar + 215px nav)
   ============================================= */
.page-body { padding-top: 251px; }
@media (max-width: 768px) {

  /* ── Announcement bar ── */
  .announcement-bar { font-size: 9px; padding: 8px 16px; letter-spacing: 0.16em; }

  /* ── Header ── */
  .nav-inner { height: 72px; padding: 0 20px; }
  .nav-logo img { height: 60px; }
  .nav-logo2 img { height: 32px; }
  .nav-centre { gap: 0; }
  .nav-links-row { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .page-body { padding-top: 108px; } /* 36px bar + 72px header */

  /* ── Hero ── */
  .hero { min-height: 520px; }
  .hero-content { padding: 0 28px; bottom: 72px; max-width: 100%; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-dots { right: 28px; bottom: 28px; }

  /* ── Sections ── */
  .section { padding: 60px 24px; }
  .newsletter { padding: 60px 24px; }
  .newsletter .container { flex-direction: column; gap: 32px; }
  .newsletter__row { grid-template-columns: 1fr; }
  .newsletter__heading { font-size: 28px; }
  .newsletter__form { max-width: 100%; }

  /* ── Page hero ── */
  .page-hero { padding: 100px 24px 52px; }
  .page-hero h1 { font-size: clamp(34px, 10vw, 56px); }
  .page-hero p { font-size: 13.5px; }

  /* ── Filter bar ── */
  .filter-bar { padding: 14px 20px; gap: 8px; }
  .filter-tag { padding: 7px 14px; font-size: 9.5px; }

  /* ── Product grid ── */
  .product-grid { grid-template-columns: repeat(2, 1fr); margin-top: 28px; }
  .product-card__name { font-size: 17px; }

  /* ── Services grid ── */
  .services-list { grid-template-columns: 1fr; }
  .service-item { min-height: 380px; }
  .service-item__content { padding: 28px; }

  /* ── About split ── */
  .about-split { grid-template-columns: 1fr; gap: 36px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 36px; }

  /* ── Instagram ── */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Event banner ── */
  .event-banner__content { padding: 40px 24px; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 52px 24px; }

  /* ── Footer ── */
  .site-footer { padding: 52px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ── Section headings ── */
  .section-heading { font-size: clamp(26px, 7vw, 40px); }
  .section-body { font-size: 13.5px; max-width: 100%; }

  /* ── Classes / Workshop booking ── */
  .class-detail { grid-template-columns: 1fr; gap: 40px; }
  .class-gallery { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   HERO SLIDESHOW
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #050505;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.10) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 0;
  padding: 0 80px;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 42px;
}

/* Slide indicator lines */
.hero-dots {
  position: absolute;
  bottom: 44px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 26px; height: 1px;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  border: none; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 46px; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid currentColor;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn-gold { color: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--black); }
.btn-white { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-white:hover { background: var(--white); color: var(--black); }
.btn-outline { color: var(--text-mid); border-color: var(--border-mid); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-black { color: var(--white); border-color: var(--border-mid); }
.btn-outline-black:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section { padding: 100px 60px; }
.section--dark  { background: var(--surface); }
.section--card  { background: var(--card); }
.section--cream { background: var(--surface); } /* repurposed for dark theme */
.container { max-width: 1320px; margin: 0 auto; }

.section-label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.section-body {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 520px;
}

/* =============================================
   PRODUCT GRID
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.product-card { cursor: pointer; position: relative; }
.product-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--card);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.product-card:hover .product-card__img img {
  transform: scale(1.05);
  filter: brightness(1);
}
.product-card__info {
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}
.product-card__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.product-card__price {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text);
}

.view-all-wrap { text-align: center; margin-top: 56px; }

/* =============================================
   SERVICES (2-col image cards)
   ============================================= */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.service-item {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--card);
}
.service-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.service-item:hover img { transform: scale(1.04); filter: brightness(0.72); }
.service-item__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 44px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 100%);
}
.service-item__content h3 {
  font-family: var(--serif);
  font-size: 30px; font-weight: 400;
  color: var(--white); margin-bottom: 10px;
}
.service-item__content p {
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}
.service-item__content a {
  font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.45);
  padding-bottom: 2px;
}

/* =============================================
   EVENT BANNER
   ============================================= */
.event-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.event-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.48);
}
.event-banner__content {
  position: relative; z-index: 1;
  padding: 60px 80px;
  width: 100%; color: var(--white);
}
.event-banner__date {
  font-size: 9.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.event-banner__title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 300; max-width: 560px;
  margin-bottom: 14px; line-height: 1.15;
}
.event-banner__desc {
  font-size: 13px; font-weight: 300;
  max-width: 440px; margin-bottom: 30px;
  opacity: 0.7; line-height: 1.8;
}

/* =============================================
   ABOUT SPLIT
   ============================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-split__img { aspect-ratio: 4/5; overflow: hidden; }
.about-split__img img {
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.82);
}

/* =============================================
   GIFTS SECTION
   ============================================= */
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.gift-card { position: relative; overflow: hidden; }
.gift-card__img { aspect-ratio: 1; background: var(--card); overflow: hidden; }
.gift-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.5s ease, filter 0.4s;
}
.gift-card:hover .gift-card__img img { transform: scale(1.06); filter: brightness(1); }
.gift-card__info { padding: 16px 4px; border-bottom: 1px solid var(--border); }
.gift-card__name { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 4px; }
.gift-card__price { font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 60px;
}
.testimonial-item blockquote {
  font-family: var(--serif);
  font-size: 18px; font-weight: 300;
  line-height: 1.8; color: var(--text);
  margin-bottom: 20px;
  padding-top: 36px; position: relative;
}
.testimonial-item blockquote::before {
  content: '\201C';
  font-size: 72px; font-family: var(--serif);
  position: absolute; top: -10px; left: -4px;
  color: var(--gold); opacity: 0.35; line-height: 1;
}
.testimonial-item cite {
  font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; font-style: normal;
  color: var(--gold);
}

/* =============================================
   INSTAGRAM GRID
   ============================================= */
.instagram-section { padding: 0; }
.instagram-heading {
  text-align: center;
  font-size: 9.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  padding: 60px 0 28px;
}
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.instagram-grid a {
  aspect-ratio: 1; overflow: hidden;
  display: block; background: var(--card);
}
.instagram-grid img {
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.75);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.instagram-grid a:hover img { transform: scale(1.06); filter: brightness(1); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.newsletter .container {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 60px; flex-wrap: wrap;
}
.newsletter__heading {
  font-family: var(--serif);
  font-size: 38px; font-weight: 300;
  color: var(--white); max-width: 320px; line-height: 1.3;
}
.newsletter__sub {
  font-size: 13px; font-weight: 300;
  color: var(--text-mid); max-width: 280px; margin-top: 10px;
}
.newsletter__form {
  display: flex; flex-direction: column;
  gap: 14px; flex: 1; max-width: 500px;
}
.newsletter__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.newsletter__input {
  border: none; border-bottom: 1px solid var(--border-mid);
  background: transparent; padding: 10px 4px;
  font-size: 13px; font-weight: 300;
  letter-spacing: 0.04em; outline: none; width: 100%;
  color: var(--text); transition: border-color 0.2s;
}
.newsletter__input::placeholder { color: var(--text-dim); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__submit {
  margin-top: 8px; align-self: flex-start;
  background: var(--gold); color: var(--black);
  border: none; padding: 13px 36px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter__submit:hover { opacity: 0.82; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1320px; margin: 0 auto 60px;
}
.footer-logo {
  height: 48px; width: auto; margin-bottom: 20px;
  object-fit: contain;
}
.footer-address { font-size: 13px; font-weight: 300; line-height: 2; color: var(--text-dim); }
.footer-col-title {
  font-size: 9px; letter-spacing: 0.26em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 20px; color: var(--gold);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300;
  color: var(--text-dim); transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px; max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copyright { font-size: 11px; color: var(--text-dim); letter-spacing: 0.04em; }
.footer-copyright a { color: var(--text-dim); border-bottom: 1px solid var(--border); }
.footer-copyright a:hover { color: var(--white); }
.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  padding: 130px 60px 80px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300; letter-spacing: 0.04em;
  line-height: 1.1; color: var(--white);
}
.page-hero p {
  font-size: 14.5px; font-weight: 300;
  color: var(--text-mid); max-width: 520px;
  margin: 20px auto 0; line-height: 1.85;
}

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
  padding: 22px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-tag {
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 8px 18px;
  border: 1px solid var(--border); cursor: pointer;
  background: none; color: var(--text-mid);
  transition: all 0.2s;
}
.filter-tag.active, .filter-tag:hover {
  border-color: var(--gold); color: var(--gold);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-info { padding: 100px 80px 100px 60px; background: var(--surface); }
.contact-info h2 {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--white); margin-bottom: 28px;
}
.contact-info p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.9; margin-bottom: 8px; }
.contact-detail-block { margin-top: 44px; }
.contact-detail-block h4 {
  font-size: 9px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.contact-img { aspect-ratio: 1; overflow: hidden; }
.contact-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.contact-form {
  padding: 60px; background: var(--card);
  display: flex; flex-direction: column; gap: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.form-field input, .form-field select, .form-field textarea {
  border: none; border-bottom: 1px solid var(--border-mid);
  background: transparent; padding: 10px 4px;
  font-size: 14px; font-weight: 300; outline: none;
  color: var(--text); transition: border-color 0.2s; width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field select option { background: var(--card); color: var(--text); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--gold); color: var(--black);
  border: none; padding: 14px 40px;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer;
  align-self: flex-start; transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.8; }

/* =============================================
   CLASSES PAGE
   ============================================= */
.class-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.class-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.class-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: brightness(0.8); }
.class-gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

/* =============================================
   CART NAV ICON
 