:root {
  --maroon: #5C0E14;
  --maroon-dark: #3A0810;
  --saffron: #E67E22;
  --gold: #C9971C;
  --gold-light: #F4D06F;
  --ivory: #FFF8EE;
  --cream: #FBF1DF;
  --ink: #2A1710;
  --ink-light: #5A4035;
  --line: rgba(42, 23, 16, 0.12);
  --line-light: rgba(255, 248, 238, 0.18);
  --max: 1160px;
  --radius: 12px;
  --shadow-sm: 0 4px 14px rgba(58, 8, 16, 0.08);
  --shadow-md: 0 10px 28px rgba(58, 8, 16, 0.14);
  --shadow-lg: 0 18px 42px rgba(58, 8, 16, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 3px;
}

/* ---------- HEADER & DROPDOWN NAVIGATION ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(42, 23, 16, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* ENLARGED LOGO */
.brand-logo {
  height: 65px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 500;
}

.navlinks > a,
.navlinks > .has-dropdown > a {
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navlinks > a:hover,
.navlinks > .has-dropdown:hover > a,
.navlinks a.active {
  opacity: 1;
  color: var(--maroon);
  font-weight: 600;
}

.nav-cta {
  background: var(--saffron) !important;
  color: var(--ivory) !important;
  padding: 9px 20px !important;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.nav-cta:hover {
  background: #d36e17 !important;
  transform: translateY(-1px);
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s;
  margin-left: 2px;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--ivory);
  min-width: 240px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
  max-height: 420px;
  overflow-y: auto;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.85;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
}

.dropdown-menu a:hover {
  background: var(--cream);
  color: var(--maroon);
  opacity: 1;
  font-weight: 600;
}

.dropdown-menu a .badge {
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--maroon);
  color: var(--ivory);
  font-weight: 500;
}

.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  position: relative;
  transition: 0.25s;
}

.menu-btn span::before,
.menu-btn span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
}

.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

.mobile-panel {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line);
  gap: 4px;
  background: var(--ivory);
}

.mobile-panel a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-panel .mobile-sub-heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--saffron);
  text-transform: uppercase;
  margin-top: 10px;
  padding: 4px 0;
}

.mobile-panel .mobile-sublinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mobile-panel .mobile-sublinks a {
  padding: 6px 8px;
  background: var(--cream);
  border-radius: 4px;
  font-size: 0.82rem;
  text-align: center;
  border: none;
}

.mobile-panel .nav-cta {
  margin-top: 14px;
  text-align: center;
}

body.menu-open .mobile-panel {
  display: flex;
}

/* ---------- HERO CAROUSEL ---------- */
.hero {
  position: relative;
  background: var(--maroon-dark);
  overflow: hidden;
  width: 100%;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: clamp(480px, 62vh, 620px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.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(to top, rgba(58, 8, 16, 0.9) 0%, rgba(58, 8, 16, 0.3) 45%, transparent 75%);
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 24px 36px;
  color: var(--ivory);
  z-index: 2;
}

.hero-caption .wrap {
  padding: 0;
}

.hero-caption .eyebrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-caption h1 {
  font-size: clamp(1.8rem, 4.4vw, 3.1rem);
  max-width: 17ch;
  margin-bottom: 14px;
}

.hero-caption p {
  max-width: 48ch;
  opacity: 0.88;
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.hero-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 5px;
}

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 3;
  pointer-events: none;
}

.hero-arrows button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(58, 8, 16, 0.6);
  border: 1px solid rgba(255, 248, 238, 0.3);
  color: var(--ivory);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hero-arrows button:hover {
  background: var(--maroon);
}

/* ---------- BANNER / PAGE HEADERS ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
  color: var(--ivory);
  padding: 68px 0 54px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 151, 28, 0.18), transparent 50%);
  pointer-events: none;
}

.page-hero .eyebrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 16px;
  max-width: 22ch;
}

.page-hero p {
  opacity: 0.88;
  font-size: 1.08rem;
  max-width: 58ch;
  line-height: 1.6;
}

/* ---------- GENERIC SECTIONS ---------- */
section {
  padding: 76px 0;
}

.section-head {
  max-width: 660px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head .eyebrow {
  color: var(--saffron);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.section-head p {
  opacity: 0.78;
  font-size: 1.02rem;
}

.cream-section { background: var(--cream); }
.maroon-section { background: var(--maroon); color: var(--ivory); }
.maroon-section .section-head p { opacity: 0.8; }
.maroon-dark-section { background: var(--maroon-dark); color: var(--ivory); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--saffron);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.28);
}

.btn-primary:hover {
  background: #d36e17;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.36);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid var(--maroon);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--maroon);
  color: var(--ivory);
}

.btn-gold {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gold);
  color: var(--maroon-dark);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-gold:hover {
  background: #deb033;
  transform: translateY(-2px);
}

/* ---------- STAT STRIP ---------- */
.strip {
  background: var(--maroon-dark);
  color: var(--ivory);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
  position: relative;
  width: 100%;
  white-space: nowrap;
  box-sizing: border-box;
}

.strip-track {
  display: inline-flex !important;
  align-items: center;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  width: max-content;
  will-change: transform;
  animation: scrollstrip 30s linear infinite;
}

.strip:hover .strip-track {
  animation-play-state: paused;
}

@keyframes scrollstrip {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.strip-item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 34px;
  border-right: 1px solid var(--line-light);
  flex-shrink: 0;
  white-space: nowrap;
}

.strip-item .n {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
}

.strip-item .l {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- CARD GRIDS ---------- */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--maroon);
}

.feature-card p {
  font-size: 0.93rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--maroon-dark);
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid rgba(42, 23, 16, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.g-item:hover img {
  transform: scale(1.06);
}

.g-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(58, 8, 16, 0.94) 0%, rgba(58, 8, 16, 0.4) 65%, transparent 100%);
  color: var(--ivory);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.g-cap .g-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- YEAR FILTER TABS ---------- */
.year-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.year-tab {
  padding: 8px 18px;
  border-radius: 20px;
  background: var(--ivory);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink);
}

.year-tab:hover,
.year-tab.active {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

/* ---------- FORMS ---------- */
.form-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--saffron);
  background: var(--ivory);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--maroon-dark);
  color: var(--ivory);
  padding: 60px 0 26px;
  border-top: 3px solid var(--gold);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-light);
}

.foot-brand .brand-logo {
  height: 58px;
  background: rgba(255, 248, 238, 0.95);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: inline-block;
  margin-bottom: 16px;
}

.foot-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}

.foot-col h4 {
  font-size: 0.85rem;
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.foot-col a,
.foot-col p {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 9px;
  transition: opacity 0.2s, color 0.2s;
}

.foot-col a:hover {
  opacity: 1;
  color: var(--gold);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.84rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- INSTAGRAM SHOWCASE & SOCIAL BAR (BEFORE FOOTER) ---------- */
.insta-section {
  padding: 72px 0 60px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  position: relative;
}

.insta-head {
  text-align: center;
  margin-bottom: 34px;
}

.insta-handle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #B53F1B;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.insta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  color: #5C0E14;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.insta-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(42, 23, 16, 0.07);
  display: block;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

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

.insta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(92, 14, 20, 0.18);
}

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

.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(92, 14, 20, 0.85) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #ffffff;
  transition: opacity 0.3s ease;
  padding: 16px;
  text-align: center;
}

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

.insta-overlay svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.insta-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #FFF8EE;
}

.insta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.btn-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 38px;
  background: linear-gradient(135deg, #a30e16 0%, #82080f 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(163, 14, 22, 0.35);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-insta:hover {
  background: linear-gradient(135deg, #b8141d 0%, #940a12 100%);
  box-shadow: 0 12px 30px rgba(163, 14, 22, 0.48);
  transform: translateY(-2px);
}

.btn-insta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-channels-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.22s ease;
}

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

.social-chip:hover {
  background: var(--maroon);
  color: var(--ivory) !important;
  border-color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .navlinks { display: none; }
  .menu-btn { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .insta-grid { gap: 14px; }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-logo { height: 52px; }
  section { padding: 54px 0; }
  .page-hero { padding: 52px 0 40px; }
  .insta-section { padding: 54px 0 46px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insta-card { border-radius: 14px; }
}

@media (max-width: 500px) {
  .wrap { padding: 0 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .g-cap { padding: 10px 12px; font-size: 1.05rem; }
  .g-cap .g-label { font-size: 0.68rem; letter-spacing: 0.02em; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .insta-card { border-radius: 12px; }
  .btn-insta { width: 100%; max-width: 320px; }
  .social-channels-bar { gap: 8px; }
  .social-chip { font-size: 0.82rem; padding: 7px 14px; }
}

