/* ==========================================================================
   City Club of Alexandria — Design Tokens
   ========================================================================== */

:root {
  /* Fixed overlay tokens — always light text on dark photo/overlay backgrounds,
     independent of light/dark theme (hero, page hero, event cards, CTA banners). */
  --overlay-fg: #f7f2e4;
  --overlay-fg-muted: #d8d0bc;
  --overlay-bg: #17150f;
  --overlay-accent: #d9bd75;
}

:root,
[data-theme='light'] {
  /* Surfaces — warm ivory */
  --color-bg: #f7f2e7;
  --color-surface: #fbf7ee;
  --color-surface-2: #fdfbf6;
  --color-surface-offset: #efe6cf;
  --color-surface-offset-2: #e6d9b8;
  --color-divider: #e1d4ad;
  --color-border: #d7c69a;

  /* Text — warm near-black */
  --color-text: #211c13;
  --color-text-muted: #6f6650;
  --color-text-faint: #b2a684;
  --color-text-inverse: #f9f4e7;

  /* Primary Accent — antique gold */
  --color-primary: #9c7a2c;
  --color-primary-hover: #7c611f;
  --color-primary-active: #5f4a17;
  --color-primary-highlight: #ecdfb8;

  /* Secondary Accent — deep club green */
  --color-secondary: #1f3a2e;
  --color-secondary-hover: #16281f;
  --color-secondary-highlight: #d7e0da;

  --color-success: #3f6b3a;
  --color-success-highlight: #d8e4d3;
  --color-error: #8f2f2c;
  --color-error-highlight: #eed6d3;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.4rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px oklch(0.2 0.03 80 / 0.10);
  --shadow-md: 0 6px 20px oklch(0.2 0.03 80 / 0.12);
  --shadow-lg: 0 20px 50px oklch(0.15 0.03 80 / 0.22);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Switzer', 'Work Sans', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #14120c;
  --color-surface: #1a1710;
  --color-surface-2: #201c13;
  --color-surface-offset: #241f15;
  --color-surface-offset-2: #2c2618;
  --color-divider: #33291a;
  --color-border: #3d3220;
  --color-text: #ece3cd;
  --color-text-muted: #a89a78;
  --color-text-faint: #6c5f45;
  --color-text-inverse: #201c13;
  --color-primary: #d1ab5c;
  --color-primary-hover: #e3c079;
  --color-primary-active: #f0d494;
  --color-primary-highlight: #3a3320;
  --color-secondary: #6f9683;
  --color-secondary-hover: #8bb09d;
  --color-secondary-highlight: #22302a;
  --color-success: #7fae74;
  --color-success-highlight: #24322450;
  --color-error: #c9756f;
  --color-error-highlight: #3a2422;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 24px 60px oklch(0 0 0 / 0.55);
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.wrap--narrow {
  max-width: var(--content-narrow);
}
.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-primary);
}
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-text);
  font-weight: 500;
}
.section-title {
  font-size: var(--text-2xl);
  margin-top: var(--space-4);
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-5);
  max-width: 46ch;
}
.grid-2 {
  display: grid;
  gap: var(--space-16);
  align-items: center;
}
@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2--reverse .grid-2-media {
    order: 2;
  }
}

/* Join waitlist / rent the space — side-by-side layout, no photo hero */
.join-intro {
  padding-bottom: var(--space-4);
  text-align: center;
}
.join-intro .eyebrow {
  justify-content: center;
}
.join-intro .section-lede {
  margin-inline: auto;
}
.join-rent-section {
  padding-top: var(--space-8);
}
.join-rent-grid {
  align-items: start;
}
@media (min-width: 860px) {
  .join-rent-grid:first-of-type {
    gap: var(--space-20);
  }
  .join-rent-grid + .join-rent-grid {
    position: relative;
  }
  .join-rent-grid + .join-rent-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--color-divider);
    transform: translateX(calc(var(--space-16) / -2));
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}
.brand-group {
  display: flex;
  align-items: center;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.brand img {
  height: 76px;
  width: auto;
  border-radius: var(--radius-full);
  background: #fbf7ee;
}
@media (max-width: 480px) {
  .brand img {
    height: 60px;
  }
}
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}
.brand-tagline {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: var(--space-8);
  padding-left: var(--space-6);
  border-left: 1px solid var(--color-divider);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .brand-tagline {
    display: none;
  }
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-8);
}
.nav-links a {
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: var(--space-1);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--color-text);
}
.nav-links a:hover::after,
.nav-links a[aria-current='page']::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.icon-btn:hover {
  color: var(--color-text);
  border-color: var(--color-primary);
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  align-items: center;
  justify-content: center;
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-actions .btn {
    display: none;
  }
}
@media (max-width: 400px) {
  .brand-name {
    font-size: var(--text-base);
  }
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-6) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav a {
  padding: var(--space-3) var(--space-2);
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-base);
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover {
  background: var(--color-surface-offset);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #1c1608;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  border-color: color-mix(in oklab, var(--overlay-fg) 55%, transparent);
  color: var(--overlay-fg);
}
.btn-ghost:hover {
  background: color-mix(in oklab, var(--overlay-fg) 12%, transparent);
  border-color: var(--overlay-fg);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-block {
  width: 100%;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--overlay-fg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.1 0.02 60 / 0.55) 0%,
    oklch(0.08 0.02 60 / 0.72) 55%,
    oklch(0.06 0.02 60 / 0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-32) var(--space-20);
  max-width: 760px;
}
.hero .eyebrow {
  color: var(--overlay-accent);
}
.hero .eyebrow::before {
  background: var(--overlay-accent);
}
.hero h1 {
  font-size: var(--text-3xl);
  margin-top: var(--space-5);
  color: var(--overlay-fg);
}
.hero h1 em {
  font-style: italic;
  color: var(--overlay-accent);
}
.hero p {
  font-size: var(--text-lg);
  margin-top: var(--space-6);
  color: color-mix(in oklab, var(--overlay-fg) 82%, transparent);
  max-width: 52ch;
}
.hero .cta-row {
  margin-top: var(--space-10);
}
.hero p.hero-note {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--overlay-fg) 65%, transparent);
}

/* ==========================================================================
   Feature strip
   ========================================================================== */

.feature-strip {
  border-bottom: 1px solid var(--color-divider);
}
.feature-grid {
  display: grid;
  gap: var(--space-10);
  padding-block: var(--space-16);
}
@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
}
.feature-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 600;
}
.feature-card p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ==========================================================================
   About / intro
   ========================================================================== */

.about-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  border-left: 2px solid var(--color-primary);
  padding-left: var(--space-6);
  margin-top: var(--space-10);
}
.about-quote cite {
  display: block;
  margin-top: var(--space-4);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Split sections (waitlist / rental)
   ========================================================================== */

.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-divider);
  position: relative;
  aspect-ratio: 4/3;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-media figcaption {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  color: #f9f4e7;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: oklch(0.1 0.02 60 / 0.45);
  backdrop-filter: blur(6px);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}
.alt-bg {
  background: var(--color-surface-offset);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.form-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 540px) {
  .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
  }
}
.field label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
  margin: 0;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--text-base);
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}
.field input[type='date'] {
  min-height: 48px;
  line-height: normal;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23a89f8f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  background-size: 14px;
  padding-right: var(--space-10);
}
.field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
}
.field-required::after {
  content: ' *';
  color: var(--color-primary);
}
.form-footnote {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-2);
}
.form-success {
  display: none;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-success-highlight);
  border: 1px solid color-mix(in oklab, var(--color-success) 40%, transparent);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-5);
  color: var(--color-text);
  font-size: var(--text-sm);
}
.form-success.is-visible {
  display: flex;
}
.form-error {
  display: none;
  color: var(--color-error);
  font-size: var(--text-sm);
  margin-top: var(--space-3);
}
.form-error.is-visible {
  display: block;
}
.form-card.is-submitted .form-grid,
.form-card.is-submitted .form-submit-row {
  display: none;
}

/* ==========================================================================
   Events page
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: var(--overlay-fg);
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, oklch(0.1 0.02 60 / 0.35) 0%, oklch(0.06 0.02 60 / 0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-16);
}
.page-hero h1 {
  font-size: var(--text-3xl);
  color: var(--overlay-fg);
  margin-top: var(--space-4);
}
.page-hero p {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: color-mix(in oklab, var(--overlay-fg) 85%, transparent);
  max-width: 56ch;
}

.events-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
.events-toolbar p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.events-grid {
  display: grid;
  gap: var(--space-8);
  padding-block: var(--space-16);
}
@media (min-width: 720px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  background: var(--overlay-bg);
  color: var(--overlay-fg);
}
.event-date .day {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1;
}
.event-date .month {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklab, #f2ede1 75%, transparent);
}
.event-badge {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid color-mix(in oklab, #f2ede1 40%, transparent);
  color: #f2ede1;
}
.event-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.event-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
}
.event-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.event-meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-divider);
}

.events-cta {
  border-radius: var(--radius-xl);
  background: var(--overlay-bg);
  color: var(--overlay-fg);
  padding: clamp(var(--space-10), 6vw, var(--space-16));
  text-align: center;
  margin-bottom: var(--space-24);
}
.events-cta h2 {
  color: #f7f3e8;
  font-size: var(--text-xl);
}
.events-cta p {
  color: color-mix(in oklab, #f2ede1 82%, transparent);
  margin: var(--space-4) auto 0;
  max-width: 50ch;
}
.events-cta .cta-row {
  justify-content: center;
  margin-top: var(--space-8);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-10);
  background: var(--color-surface-offset);
}
.footer-top {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 780px) {
  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand img {
  height: 84px;
  width: auto;
  border-radius: var(--radius-full);
  background: #fbf7ee;
}
.footer-brand span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.footer p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.social-row {
  display: flex;
  gap: var(--space-3);
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
}
.social-row a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  clip-path: inset(0 0 12% 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
