/* Root variables */
:root {
  --color-background: #f7f3ee;
  --color-surface: #ffffff;
  --color-surface-soft: #f2ebe3;
  --color-overlay-soft: rgba(247, 243, 238, 0.7);
  --color-text: #26221c;
  --color-text-soft: #5b5347;
  --color-text-muted: #8a8277;
  --color-primary: #c9a46a;
  --color-primary-soft: rgba(201, 164, 106, 0.16);
  --color-primary-strong: #b88c46;
  --color-accent-eucalyptus: #6f8f7b;
  --color-success: #4a8f6a;
  --color-warning: #d89a3d;
  --color-danger: #c45b4f;
  --gray-50: #faf7f3;
  --gray-100: #f1ebe4;
  --gray-200: #e5ddd3;
  --gray-300: #d5c9bb;
  --gray-400: #b9aa98;
  --gray-500: #9c8b75;
  --gray-600: #7a6954;
  --gray-700: #5b4d3b;
  --gray-800: #3c3328;
  --gray-900: #221d16;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Playfair Display", "Georgia", serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --heading-line-tight: 1.1;
  --heading-line-relaxed: 1.25;
  --body-line: 1.7;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-56: 14rem;
  --space-64: 16rem;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-glass: 22px;
  --shadow-soft: 0 14px 45px rgba(18, 12, 6, 0.08);
  --shadow-medium: 0 18px 60px rgba(15, 10, 5, 0.14);
  --shadow-strong: 0 26px 80px rgba(10, 6, 2, 0.24);
  --shadow-glass: 0 18px 60px rgba(8, 5, 2, 0.35);
  --shadow-border-soft: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(114, 94, 70, 0.2) inset;
  --transition-fast: 150ms ease-out;
  --transition-medium: 250ms ease-out;
  --transition-slow: 400ms ease;
  --transition-soft: 320ms cubic-bezier(0.19, 1, 0.22, 1);
  --container-width: 1160px;
  --glass-blur: 26px;
}

@media (min-width: 1200px) {
  :root {
    --text-base: 1.0625rem;
    --text-lg: 1.1875rem;
    --text-xl: 1.375rem;
    --text-2xl: 1.625rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-medium: 0ms;
    --transition-slow: 0ms;
    --transition-soft: 0ms;
  }
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--body-line);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: var(--heading-line-relaxed);
  color: var(--color-text);
  letter-spacing: 0.02em;
}

h1 {
  font-size: var(--text-4xl);
  line-height: var(--heading-line-tight);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

h4 {
  font-size: var(--text-xl);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-soft);
}

strong, b {
  font-weight: 600;
}

a {
  color: var(--color-primary-strong);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-medium);
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 164, 106, 0.2), rgba(201, 164, 106, 0.8));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--transition-soft);
}

a:hover::after,
a:focus-visible::after {
  transform: scaleX(1);
}

small {
  font-size: var(--text-sm);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

ul, ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.25rem;
}

figure {
  margin: 0;
}

blockquote {
  margin: 0 0 var(--space-6);
}

hr {
  border: 0;
  border-top: 1px solid rgba(185, 170, 152, 0.4);
  margin: var(--space-8) 0;
}

::selection {
  background: rgba(201, 164, 106, 0.18);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid rgba(201, 164, 106, 0.85);
  outline-offset: 3px;
}

body:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container {
  width: 100%;
  max-width: calc(var(--container-width) + 2 * var(--space-6));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:focus-visible {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  background: linear-gradient(135deg, #d8b985, #c9a46a);
  color: #1b150d;
  box-shadow: 0 14px 35px rgba(20, 12, 4, 0.25);
  transition: background var(--transition-soft), color var(--transition-fast), box-shadow var(--transition-soft), transform var(--transition-soft), border-color var(--transition-medium);
}

.btn:hover {
  background: linear-gradient(135deg, #e3c894, #cfaf76);
  box-shadow: 0 18px 42px rgba(20, 12, 4, 0.32);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 26px rgba(18, 10, 4, 0.35);
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(18, 10, 4, 0.7), 0 0 0 4px rgba(201, 164, 106, 0.9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  border-color: rgba(185, 170, 152, 0.7);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: rgba(185, 170, 152, 0.95);
  box-shadow: var(--shadow-medium);
}

.btn-ghost {
  background: rgba(185, 170, 152, 0.7);
  color: var(--color-text);
  border-color: rgba(185, 170, 152, 0.7);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(241, 235, 228, 0.7);
  box-shadow: none;
}

.btn-outline-light {
  background: rgba(15, 9, 4, 0.26);
  color: #f9f5ef;
  border-color: rgba(246, 237, 224, 0.58);
  backdrop-filter: blur(22px);
}

.btn-outline-light:hover {
  background: rgba(15, 9, 4, 0.4);
}

.btn[disabled],
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(181, 166, 147, 0.7);
  background-color: rgba(252, 248, 243, 0.9);
  color: var(--color-text);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium), background-color var(--transition-medium), transform var(--transition-fast);
}

textarea {
  border-radius: var(--radius-lg);
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(201, 164, 106, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 0 4px rgba(201, 164, 106, 0.3);
  background-color: #fdf9f4;
}

input[disabled],
select[disabled],
textarea[disabled] {
  cursor: not-allowed;
  background-color: rgba(238, 232, 223, 0.8);
  color: var(--color-text-muted);
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: var(--text-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), rgba(245, 238, 229, 0.95));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-soft {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 229, 0.92));
  box-shadow: 0 22px 60px rgba(32, 21, 10, 0.12);
}

.card-elevated {
  box-shadow: var(--shadow-medium);
}

.glass-panel {
  position: relative;
  border-radius: var(--radius-glass);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(247, 243, 238, 0.64));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.glass-panel-soft {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 236, 225, 0.7));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(12, 7, 2, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(185, 170, 152, 0.9);
  background: rgba(247, 241, 234, 0.96);
  color: var(--color-text-soft);
}

.badge-soft {
  border-color: rgba(201, 164, 106, 0.5);
  background: rgba(201, 164, 106, 0.08);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  background: rgba(244, 236, 225, 0.95);
  color: var(--color-text-soft);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent-eucalyptus);
}

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }

.text-serif { font-family: var(--font-serif); }
.text-sans { font-family: var(--font-sans); }
.text-mono { font-family: var(--font-mono); }

.text-muted { color: var(--color-text-muted); }
.text-soft { color: var(--color-text-soft); }
.text-primary { color: var(--color-primary-strong); }
.text-accent { color: var(--color-accent-eucalyptus); }
.text-upper { text-transform: uppercase; }

.ls-wide { letter-spacing: 0.16em; }
.ls-wider { letter-spacing: 0.2em; }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.py-section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

@media (min-width: 992px) {
  .py-section {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }
}



.section-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  line-height: var(--heading-line-tight);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-4xl);
  }
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-soft);
}

.tagline {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.caption {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.hero-shell {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  color: #fdf8f1;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(247, 241, 232, 0.72), transparent 46%), linear-gradient(180deg, rgba(10, 6, 2, 0.06), rgba(7, 4, 1, 0.85));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 241, 232, 0.9);
  margin-bottom: var(--space-2);
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: var(--space-4);
}

.hero-lede {
  max-width: 32rem;
  font-size: var(--text-lg);
  color: rgba(245, 238, 229, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: var(--space-6);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 238, 229, 0.8);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta span::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 241, 232, 0.2), rgba(247, 241, 232, 0.8));
}

.radiant-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), transparent 60%);
  opacity: 0.9;
}

.header-shell {
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  position: relative;
  margin-top: var(--space-3);
}

.header-glass {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-glass);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(247, 241, 232, 0.68));
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.9);
}

@media (min-width: 992px) {
  .header-glass {
    padding: 0.9rem 1.75rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: var(--text-sm);
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  padding-block: 0.25rem;
  color: var(--color-text-soft);
  transition: color var(--transition-medium);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 164, 106, 0.1), rgba(201, 164, 106, 0.95));
  transform-origin: center;
  transform: scaleX(0);
  transition: transform var(--transition-soft);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.info-ribbon {
  margin-top: var(--space-2);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(90deg, rgba(244, 236, 225, 0.94), rgba(241, 233, 222, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(40, 28, 16, 0.1);
  overflow: hidden;
}

.info-ribbon-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.info-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 10%, #fefaf2, #c9a46a);
}

.footer-shell {
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
  background: radial-gradient(circle at top, #f9f4ee, #f0e6da);
  border-top: 1px solid rgba(217, 204, 188, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

.footer-brand-copy {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  max-width: 22rem;
}

.footer-heading {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list .footer-link {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  position: relative;
  padding-bottom: 0.1rem;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 170, 152, 0), rgba(185, 170, 152, 0.8));
  transform-origin: right;
  transform: scaleX(0);
  transition: transform var(--transition-soft);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--color-text);
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
  transform-origin: left;
  transform: scaleX(1);
}

.footer-newsletter-input {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-3);
}

.footer-newsletter-input input {
  border-radius: 999px;
  background: rgba(253, 249, 244, 0.95);
}

.footer-newsletter-input .btn {
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid rgba(209, 196, 180, 0.8);
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 164, 106, 0.45);
  box-shadow: 0 10px 26px rgba(40, 28, 16, 0.16);
  transition: transform var(--transition-soft), box-shadow var(--transition-soft), background var(--transition-medium);
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(40, 28, 16, 0.22);
  background: linear-gradient(145deg, #ffffff, #f5ecdf);
}

.arch-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.arch-divider::before,
.arch-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(185, 170, 152, 0), rgba(185, 170, 152, 0.85));
}

.arch-divider::after {
  background-image: linear-gradient(90deg, rgba(185, 170, 152, 0.85), rgba(185, 170, 152, 0));
}

.arch-divider span {
  letter-spacing: 0.24em;
}

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }
.shadow-strong { box-shadow: var(--shadow-strong); }

.bg-surface { background-color: var(--color-surface); }
.bg-surface-soft { background-color: var(--color-surface-soft); }
.bg-eucalyptus-soft { background-color: rgba(111, 143, 123, 0.08); }
.bg-primary-soft { background-color: var(--color-primary-soft); }

.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

.pointer-none { pointer-events: none; }

.rounded-full { border-radius: 999px; }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

.transition-soft { transition: all var(--transition-soft); }

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}