:root {
  --red: #a2231d;
  --green: #169d57;
  --gold: #b8972a;
  --gold-lt: #d4af50;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --mid: #242424;
  --cream: #f2ede4;
  --muted: #7a7a7a;
  --border: rgba(184, 151, 42, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ─── TOP ACCENT ─── */
.top-accent {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0%,
    var(--gold-lt) 50%,
    var(--red) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.nav-logo-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold-lt);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--green);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  nav {
    padding: 0 20px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 71px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  opacity: 0.18;
  filter: grayscale(60%);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.97) 0%,
    rgba(13, 13, 13, 0.75) 60%,
    rgba(162, 35, 29, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cream);
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero h1 em {
  display: block;
  color: var(--red);
  font-style: italic;
}

.hero-sub {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--cream);
  max-width: 560px;
  letter-spacing: 0.04em;
  animation: fadeUp 1s 0.3s ease both;
}

.est-badge {
  position: absolute;
  right: 80px;
  bottom: 80px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--border);
  background-color: var(--dark3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 1;
  animation: fadeUp 1s 0.6s ease both;
}
.est-badge .est-label {
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}
.est-badge .est-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.est-badge .est-sub {
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
}

@media (max-width: 700px) {
  .hero-content {
    padding: 60px 24px;
  }
  .est-badge {
    display: none;
  }
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding-top: 101px;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--red) 0px,
    var(--red) 1px,
    transparent 1px,
    transparent 60px
  );
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 60px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease both;
}
.page-hero-eyebrow .line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.page-hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--cream);
  animation: fadeUp 0.8s 0.1s ease both;
}
.page-hero h1 em {
  display: block;
  font-size: 45px;
  color: var(--red);
  font-style: italic;

}
.page-hero h1 span{
  font-style: normal!important;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media (max-width: 700px) {
  .page-hero-inner {
    padding: 40px 24px;
  }
}

/* ─── CONTENT WRAP ─── */
.content-wrap {
  padding: 80px 80px 100px;
  max-width: 760px;
}
@media (max-width: 700px) {
  .content-wrap {
    padding: 50px 24px 70px;
  }
}

/* ─── INTRO TEXT ─── */
.intro-text {
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.intro-text p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── WARNING BLOCK ─── */
.warning-block {
  background: rgba(162, 35, 29, 0.08);
  border: 1px solid rgba(162, 35, 29, 0.35);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 20px 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: fadeUp 0.7s 0.2s ease both;
}
.warning-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(162, 35, 29, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.warning-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
}
.warning-text h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.warning-text p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ─── FORM ─── */
.form-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
}

label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
label .req {
  color: var(--red);
  margin-left: 3px;
}

input,
select,
textarea {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
input::placeholder,
textarea::placeholder {
  color: #3a3a3a;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: #1e1e1e;
  box-shadow: 0 0 0 3px rgba(184, 151, 42, 0.08);
}
input.error,
select.error,
textarea.error {
  border-color: rgba(162, 35, 29, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(162, 35, 29, 0.08) !important;
}
input.valid,
select.valid,
textarea.valid {
  border-color: rgba(22, 157, 87, 0.5);
}

.error-msg {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-top: -4px;
  display: none;
}
.error-msg.visible {
  display: block;
}

textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}

/* ─── SUBMIT BUTTON ─── */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 32px;
  background: var(--red);
  border: 1px solid rgba(162, 35, 29, 0.6);
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  margin-top: 8px;
}
.submit-btn:hover {
  background: #8c1e18;
  box-shadow: 0 8px 32px rgba(162, 35, 29, 0.3);
  transform: translateY(-1px);
}
.submit-btn:active {
  transform: translateY(0);
}
.submit-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}
.submit-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── SUCCESS MESSAGE ─── */
#successMsg {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 40px;
  animation: fadeUp 0.6s ease both;
}
#successMsg.visible {
  display: flex;
}
.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(22, 157, 87, 0.35);
  background: rgba(22, 157, 87, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.success-ring svg {
  width: 34px;
  height: 34px;
  fill: var(--green);
}
#successMsg h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}
#successMsg p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 400px;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.back-btn:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}

/* ─── SECTION SHELL ─── */
section {
  padding: 100px 80px;
}
@media (max-width: 700px) {
  section {
    padding: 70px 24px;
  }
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-eyebrow .line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
}
.section-title em {
  color: var(--red);
  font-style: italic;
}
.redbg em {
  color: var(--dark);
  font-style: italic;
}

/* ─── ABOUT ─── */
#about {
  background: var(--red);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-body {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.about-body p + p {
  margin-top: 20px;
}

.activities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 20px;
}
.activities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
}
.activities-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ─── MEMBERSHIP ─── */
#membership {
  background: var(--dark2);
  border-top: 1px solid var(--border);
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 800px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }
}

.mem-card {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.mem-card:hover {
  border-color: var(--gold);
}
.mem-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1f1a10 0%, var(--mid) 100%);
}
.mem-card.featured::before {
  content: "MEMBERSHIP";
  position: absolute;
  top: 16px;
  right: -22px;
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 28px;
  transform: rotate(45deg);
}

.mem-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mem-card-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}
.mem-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.mem-card .price {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.mem-card .price sup {
  font-size: 16px;
  vertical-align: super;
  font-weight: 400;
  color: var(--muted);
}
.mem-card .price-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.mem-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 16px;
}

.mem-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(184, 151, 42, 0.06);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 560px;
}

/* ─── USEFUL LINKS ─── */
#links {
  background: var(--muted);
  border-top: 1px solid var(--border);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 24px;
  text-decoration: none;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.link-card:hover {
  border-color: var(--gold-lt);
  transform: translateY(-2px);
}
.link-card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
}
.link-card p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.link-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.link-arrow::after {
  content: "→";
  font-size: 14px;
}

/* ─── APP SECTION ─── */
#app {
  background: var(--dark2);
  border-top: 1px solid var(--border);
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
@media (max-width: 700px) {
  .app-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.app-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 500px;
}
.app-store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 22px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.store-btn:hover {
  border-color: var(--gold-lt);
  background: var(--dark3);
}
.store-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.store-btn-text .t1 {
  display: block;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.store-btn-text .t2 {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}

.phone-wrap {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}
.phone-shell {
  width: 180px;
  height: 360px;
  border: 2px solid var(--border);
  border-radius: 28px;
  background: var(--mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.phone-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: var(--dark);
  border-radius: 0 0 8px 8px;
}
.phone-shell img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.phone-shell .ph-text {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.phone-shell .ph-text strong {
  display: block;
  color: var(--gold-lt);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 700;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--red);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: 2px;
  padding: 32px 24px;
}
.contact-card .cc-icon {
  width: 38px;
  height: 38px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card .cc-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
}
.contact-card h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.contact-card a,
.contact-card p {
  font-size: 16px;
  color: var(--dark2);
  text-decoration: none;
  line-height: 1.7;
  display: block;
}
.contact-card a:hover {
  color: var(--green);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  align-items: center;
}
.social-lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-transform: uppercase;
  margin-right: 4px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.social-btn:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
}
.social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 36px 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 700px) {
  footer {
    padding: 36px 24px;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
}
.footer-copy {
  font-size: 11px;
  color: var(--cream);
  letter-spacing: 0.08em;
}
.footer-copy strong {
  color: var(--gold-lt);
}

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 48px;
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  filter: brightness(0.75) grayscale(20%);
  transition: filter 0.3s;
}
.gallery-strip img:hover {
  filter: brightness(1) grayscale(0%);
}
@media (max-width: 600px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-strip img:nth-child(n + 4) {
    display: none;
  }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}