/* ============================================
   Ritupriya Mitra — Person-First Portfolio
   ============================================ */

:root {
  --espresso: #1A0F0A;
  --terracotta: #C4622D;
  --terracotta-light: #D4784A;
  --gold: #D4A853;
  --gold-light: #E4C078;
  --cream: #F5EDE3;
  --off-white: #FAF7F4;
  --forest: #2D4A3E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 8px 40px rgba(196, 98, 45, 0.25);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--espresso);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

.section--dark {
  background: var(--espresso);
  color: var(--off-white);
}

.section--cream {
  background: var(--cream);
}

.section--blush {
  background: var(--cream);
}

/* Typography */
.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.label--gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--espresso);
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

.section-title--light {
  color: var(--off-white);
}

.section-title--light em {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--off-white);
  border-color: var(--terracotta);
}

.btn--primary:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250, 247, 244, 0.5);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.btn--linkedin {
  background: var(--espresso);
  color: var(--off-white);
  border-color: var(--espresso);
  margin-bottom: 1rem;
}

.btn--linkedin:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-2px);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero must always be visible — never wait for JS */
.hero__stage,
.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250, 247, 244, 0.85);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link.active::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.5rem 1.25rem;
  background: var(--terracotta);
  border-radius: 50px;
  color: var(--off-white) !important;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--terracotta-light);
  color: var(--off-white) !important;
}

.nav__link--linkedin {
  display: flex;
  align-items: center;
  color: var(--gold) !important;
}

.nav__link--linkedin::after {
  display: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero — editorial masthead + organic photo
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--espresso);
  color: var(--off-white);
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 8rem;
}

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(196, 98, 45, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(212, 168, 83, 0.14) 0%, transparent 45%),
    radial-gradient(ellipse at 70% 85%, rgba(45, 74, 62, 0.15) 0%, transparent 50%);
  animation: gradientShift 14s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    opacity: 0.85;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.04) translate(-1%, 1%);
  }
  100% {
    opacity: 0.9;
    transform: scale(1.02) translate(1%, -1%);
  }
}

.hero__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--off-white);
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.hero__photo-block {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(5rem, 10vw, 7.5rem);
  flex-shrink: 0;
}

.hero__photo-shell {
  width: min(340px, 78vw);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  animation: morph 8s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(196, 98, 45, 0.35);
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
  padding-top: 0.5rem;
}

@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  }
  50% {
    border-radius: 40% 60% 45% 55% / 55% 40% 60% 45%;
  }
}

.hero__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 2.25rem;
  max-width: 100%;
  white-space: nowrap;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2rem;
  margin-inline: auto;
  transform: translateX(1.25rem);
  color: rgba(250, 247, 244, 0.5);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  transition: color var(--transition);
}

.hero__scroll-text {
  display: block;
  letter-spacing: 0.2em;
  padding-right: 0.2em;
  text-align: center;
  line-height: 1;
}

.hero__scroll-arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

.section--after-hero {
  padding-top: 60px;
}

.hero__scroll:hover {
  color: var(--gold);
}

/* ============================================
   Who Is Ritupriya
   ============================================ */
.who {
  background: var(--off-white);
}

.who__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.who__quote {
  border: none;
  padding: 0;
}

.who__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: var(--espresso);
}

.who__prose p {
  font-size: 1.125rem;
  color: rgba(26, 15, 10, 0.82);
  margin-bottom: 1.5rem;
}

.who__prose p:last-child {
  margin-bottom: 0;
}

/* ============================================
   My World
   ============================================ */
.world {
  background: var(--espresso);
  color: var(--off-white);
  overflow: hidden;
}

.world .label {
  color: var(--gold);
}

.world .section-title {
  color: var(--off-white);
}

.world .section-title em {
  color: var(--gold);
}

.world__map-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--gold);
}

.world-map {
  width: 90%;
  max-width: 900px;
  opacity: 0.35;
}

.map-dot {
  fill: var(--terracotta);
  animation: pulse 3s ease-in-out infinite;
}

.map-label {
  font-family: var(--font-mono);
  font-size: 8px;
  fill: var(--gold);
  text-anchor: middle;
  opacity: 0.7;
}

@keyframes pulse {
  0%, 100% { opacity: 1; r: 5; }
  50% { opacity: 0.5; r: 8; }
}

.world__copy {
  max-width: 680px;
  font-size: 1.15rem;
  color: rgba(250, 247, 244, 0.8);
  margin-bottom: 3.5rem;
  line-height: 1.75;
}

/* Asymmetric travel photo trio */
.photo-trio {
  position: relative;
  width: 100%;
  max-width: 820px;
  height: clamp(320px, 45vw, 420px);
  margin-inline: auto;
  z-index: 1;
}

.photo-trio__item {
  position: absolute;
  transition: transform 0.45s ease;
}

.photo-trio__frame {
  background: var(--off-white);
  padding: 0.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: box-shadow 0.45s ease;
}

.photo-trio__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-trio__item--center {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(240px, 38%);
  z-index: 3;
}

.photo-trio__item--left {
  left: 0;
  bottom: 12%;
  width: min(180px, 28%);
  transform: rotate(-3deg);
  z-index: 2;
}

.photo-trio__item--right {
  right: 0;
  bottom: 8%;
  width: min(180px, 28%);
  transform: rotate(4deg);
  z-index: 2;
}

.photo-trio__item:hover {
  z-index: 4;
}

.photo-trio__item:hover .photo-trio__frame {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}

.photo-trio__item--center:hover {
  transform: translateX(-50%) scale(1.03);
}

.photo-trio__item--left:hover {
  transform: rotate(-1deg) scale(1.03);
}

.photo-trio__item--right:hover {
  transform: rotate(1deg) scale(1.03);
}

/* ============================================
   How I Show Up
   ============================================ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.value-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(26, 15, 10, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(196, 98, 45, 0.12);
}

.value-card__icon {
  display: block;
  margin-bottom: 1.25rem;
  width: 48px;
  height: 48px;
}

.value-card__icon .icon {
  display: block;
}

/* Icon: pulse draw on scroll */
.icon-pulse__path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

.value-card.is-drawn .icon-pulse__path {
  animation: iconDraw 2s ease forwards;
}

@keyframes iconDraw {
  to { stroke-dashoffset: 0; }
}

/* Icon: compass rotate on card hover */
.icon-compass__rose {
  transform-origin: 24px 24px;
  transition: transform 0.6s ease;
}

.value-card:hover .icon-compass__rose {
  animation: compassSpin 8s linear infinite;
}

@keyframes compassSpin {
  to { transform: rotate(360deg); }
}

/* Icon: orbit arrow pulse */
.icon-orbit__arrow {
  transform-origin: 24px 28px;
  animation: arrowEscape 2.2s ease-in-out infinite;
}

@keyframes arrowEscape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.value-card__desc {
  font-size: 0.975rem;
  color: rgba(26, 15, 10, 0.72);
  line-height: 1.65;
}

.show-up__cta {
  text-align: center;
}

.show-up__cta-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(26, 15, 10, 0.75);
  margin-bottom: 1.25rem;
}

/* ============================================
   Beliefs — star field + editorial statements
   ============================================ */
.beliefs {
  position: relative;
  overflow: hidden;
}

.beliefs__stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.beliefs__container {
  position: relative;
  z-index: 1;
}

.beliefs__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  text-align: left;
}

.beliefs__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  color: var(--off-white);
  text-align: left;
  margin-bottom: 60px;
  max-width: 900px;
}

.beliefs__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
}

.belief-item {
  position: relative;
  text-align: left;
}

.belief-item__line {
  display: block;
  height: 1px;
  width: 0;
  background: rgba(250, 247, 244, 0.2);
  margin-bottom: 1.5rem;
  transition: width 0.4s ease;
}

.belief-item.visible .belief-item__line {
  width: 100%;
}

.belief-item__body {
  transition: transform 0.3s ease;
}

.belief-item__theme {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.5s ease, color 0.3s ease;
}

.belief-item__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--off-white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.belief-item--1 .belief-item__theme,
.belief-item--1 .belief-item__text {
  transition-delay: 0s;
}

.belief-item:not(.belief-item--1) .belief-item__theme,
.belief-item:not(.belief-item--1) .belief-item__text {
  transition-delay: 0.3s;
}

.belief-item.visible .belief-item__theme {
  opacity: 1;
}

.belief-item.visible .belief-item__text {
  opacity: 1;
  transform: translateY(0);
}

.belief-item__text--accent {
  color: rgba(212, 168, 83, 0.72);
}

.belief-item:hover .belief-item__body {
  transform: translateY(-4px);
}

.belief-item:hover .belief-item__theme {
  color: var(--gold);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials__carousel {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2rem 1rem 1rem;
  text-align: center;
  max-width: 100%;
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: -1rem;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--espresso);
  max-width: 680px;
  margin: 0 auto 2rem;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--terracotta);
  display: block;
}

.testimonial-card__title {
  font-size: 0.875rem;
  color: rgba(26, 15, 10, 0.55);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(196, 98, 45, 0.25);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.dot.active,
.dot:hover {
  background: var(--terracotta);
  transform: scale(1.2);
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__copy {
  font-size: 1.1rem;
  color: rgba(26, 15, 10, 0.78);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.follow-me__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.follow-me__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.follow-me__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--espresso);
  color: var(--off-white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}

.follow-me__link:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.follow-me__link svg {
  flex-shrink: 0;
  color: var(--gold);
}

.contact__email {
  font-size: 0.9375rem;
  color: rgba(26, 15, 10, 0.7);
  transition: color var(--transition);
}

.contact__email:hover {
  color: var(--terracotta);
}

.contact__form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26, 15, 10, 0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--espresso);
  background: var(--off-white);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--espresso);
  color: var(--off-white);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(250, 247, 244, 0.6);
  margin-top: 0.25rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 83, 0.15);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
}

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(250, 247, 244, 0.4);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 244, 0.08);
  margin-top: 0.5rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 968px) {
  .hero__headline {
    white-space: normal;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
  }

  .hero__name {
    margin-bottom: 2.5rem;
  }

  .who__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .value-cards {
    grid-template-columns: 1fr;
  }

  .beliefs__list {
    gap: 60px;
  }

  .photo-trio {
    height: 380px;
    max-width: 100%;
  }

  .photo-trio__item--center {
    width: 42%;
  }

  .photo-trio__item--left,
  .photo-trio__item--right {
    width: 32%;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--espresso);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    font-size: 1rem;
  }

  .photo-trio {
    height: 340px;
  }

  .photo-trio__item--left {
    left: 2%;
    bottom: 18%;
  }

  .photo-trio__item--right {
    right: 2%;
    bottom: 14%;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }
}
