:root {
  --bg: #060b0b;
  --bg-section: #0d0d0f;
  --bg-card: #111114;
  --pink: #ff4fa3;
  --pink-hover: #ff6eb5;
  --pink-glow: rgba(255, 79, 163, 0.45);
  --white: #ffffff;
  --body: #d9d9d9;
  --muted: #9a9a9a;
  --border: rgba(255, 255, 255, 0.08);
  --container: 1180px;
  --font-logo: "Brittany Signature", "Segoe Script", cursive;
  --font-menu: "Montserrat", sans-serif;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-quote: "Marck Script", cursive;
  --radius-card: 22px;
  --radius-btn: 16px;
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.45);
  --transition-card: 0.25s ease;
  --transition-btn: 0.18s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.text-pink {
  color: var(--pink);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 70, 160, 0.10), transparent 35%),
    #060b0b;
}

.site-shell::before {
  display: none;
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 10px 0;
}

.header-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-brush {
  position: absolute;
  left: -4px;
  bottom: 0px;
  top: auto;
  width: 112px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.brand-top-socials {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 4px;
}

.brand-top-socials a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1;
  transition: color 0.2s ease;
}

.brand-top-socials a:hover {
  color: var(--pink);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.brand-script {
  font-family: var(--font-logo);
  font-size: clamp(44px, 5.5vw, 58px);
  line-height: 1;
  color: var(--pink);
  text-shadow: 0 0 24px var(--pink-glow);
}

.brand-heart {
  color: var(--pink);
  font-size: 22px;
  transform: translateY(8px);
}

.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a,
.footer-menu a {
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition-btn);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.footer-menu a:hover {
  color: var(--pink);
}

.primary-menu .current-menu-item > a {
  color: var(--pink);
  box-shadow: inset 0 -2px 0 var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 79, 163, 0.45);
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.08);
}

.lang-switcher-btn {
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.lang-switcher-btn:hover,
.lang-switcher-btn.is-active {
  color: var(--pink);
}

.lang-switcher-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-socials a,
.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 0;
  color: var(--pink);
  background: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-socials a:hover,
.footer-socials a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 79, 163, 0.35);
  border-radius: 12px;
  background: rgba(255, 79, 163, 0.08);
  color: var(--pink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  background: url('../images/hero-bg.png') center right / cover no-repeat, #060b0b;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(6, 11, 11, 0.88) 0%,
    rgba(6, 11, 11, 0.60) 34%,
    rgba(6, 11, 11, 0.12) 54%,
    transparent 66%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 110px 0 80px;
}

.hero-copy {
  max-width: 520px;
  width: 44%;
  flex-shrink: 0;
}

.hero-media {
  position: absolute;
  right: 12%;
  top: 108px;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-image {
  display: block;
  height: 100%;
  width: auto;
  pointer-events: none;
}

.hero-animate {
  animation: fadeUp 0.8s ease both;
}

.hero-kicker-wrap {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.hero-dot-grid {
  display: grid;
  grid-template-columns: repeat(2, 5px);
  gap: 5px;
  margin-top: 4px;
  opacity: 0.55;
}

.hero-dot-grid span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--pink);
}

.hero-kicker {
  margin: 0;
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-title {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
  line-height: 0.82;
}

.hero-title-text {
  font-family: var(--font-logo);
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 400;
  color: var(--pink);
  text-shadow: 0 0 32px var(--pink-glow);
}

.hero-heart-outline {
  width: clamp(38px, 4vw, 56px);
  height: auto;
  color: var(--pink);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.hero-tagline {
  margin: 10px 0 0;
  font-family: var(--font-quote);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  color: #ffffef;
}

.hero-intro {
  max-width: 480px;
  margin: 24px 0 0;
  color: #d9d9d9;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-btn), box-shadow var(--transition-btn), background var(--transition-btn);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-primary {
  border: 0;
  color: #12050c;
  background: var(--pink);
  box-shadow: 0 12px 36px var(--pink-glow);
}

.btn-primary:hover {
  background: var(--pink-hover);
  box-shadow: 0 16px 48px var(--pink-glow);
}

.btn-outline {
  border: 1.5px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

.btn-outline:hover {
  box-shadow: 0 0 24px var(--pink-glow);
}

.btn-play {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  color: var(--pink);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
  color: var(--body);
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-image-fade {
  display: none;
}

.hero-brush-large {
  display: none;
}

.hero-note {
  position: absolute;
  right: 3%;
  bottom: 8%;
  z-index: 4;
  margin: 0;
  font-family: var(--font-quote);
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.15;
  color: var(--white);
  transform: rotate(-6deg);
  white-space: nowrap;
  pointer-events: none;
  text-align: right;
}

.hero-note span {
  color: var(--pink);
}

/* About */
.about-section {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background: var(--bg-section);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.about-photo-stack {
  display: flex;
  justify-content: center;
}

.polaroid {
  position: relative;
  width: min(100%, 360px);
}

.polaroid-frame-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.polaroid-photo {
  position: absolute;
  top: 8.5%;
  left: 14%;
  width: 77%;
  height: 86%;
  object-fit: cover;
  object-position: center 12%;
  z-index: 1;
}

.polaroid-note {
  position: absolute;
  left: -6%;
  bottom: -10%;
  z-index: 3;
  width: 130px;
  pointer-events: none;
}

.about-heart {
  color: var(--pink);
  font-weight: 400;
}

.about-copy .section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 22px;
  color: var(--white);
}

.about-copy p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
}

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

  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 560px;
}

.about-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-card), box-shadow var(--transition-card);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.about-card-icon {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: var(--pink);
  flex-shrink: 0;
}

.about-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.section-label {
  margin: 0 0 10px;
  color: var(--pink);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.section-label.center,
.section-title.center,
.blog-teaser-text {
  text-align: center;
}

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--white);
}

/* Interests */
.interests-section {
  padding: 20px 0 90px;
  background: var(--bg-section);
}

.section-heading {
  margin-bottom: 42px;
}

.section-line {
  width: 120px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.heading-star {
  color: var(--pink);
  margin-left: 8px;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.interest-card {
  position: relative;
  padding: 0 0 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-card), box-shadow var(--transition-card);
}

.interest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.interest-media {
  position: relative;
}

.interest-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.interest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interest-icon {
  position: absolute;
  left: 16px;
  bottom: -22px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 95, 162, 0.45);
  z-index: 2;
}

.interest-icon svg {
  display: block;
}

.interest-card h3 {
  margin: 34px 20px 8px;
  font-family: var(--font-menu);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.interest-card p {
  margin: 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Gallery */
.gallery-section {
  padding: 10px 0 80px;
  background: var(--bg-section);
}

.gallery-slider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.gallery-track-wrap {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
}

.gallery-item {
  flex: 0 0 calc((100% - 90px) / 6);
  min-width: 180px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 95, 162, 0.12);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.gallery-item a {
  position: relative;
  display: block;
  color: inherit;
}

.gallery-play {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.gallery-nav {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--pink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Quote */
.quote-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 20% 50%, rgba(255, 95, 162, 0.18), transparent 40%);
}

.quote-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.5fr;
  gap: 24px;
  align-items: center;
}

.quote-content {
  margin: 0;
  padding: 0;
}

.quote-mark {
  display: block;
  font-family: var(--font-quote);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.8;
  color: var(--pink);
}

.quote-content p {
  margin: 0;
  max-width: 620px;
  font-family: var(--font-quote);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.45;
  color: var(--white);
}

.quote-mark-end {
  text-align: right;
  margin-top: -8px;
}

.quote-decor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--pink);
}

.quote-heart {
  font-size: 42px;
}

.quote-mic {
  opacity: 0.85;
}

/* Blog teaser */
.blog-teaser {
  padding: 70px 0 40px;
  background: var(--bg-section);
}

.blog-teaser-text {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 70px 0 28px;
  border-top: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

.footer-glow {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: radial-gradient(circle at 50% 100%, rgba(255, 95, 162, 0.16), transparent 68%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 42px;
}

.footer-script {
  margin: 0 0 8px;
  font-family: var(--font-quote);
  font-size: clamp(34px, 4vw, 48px);
  color: var(--pink);
}

.footer-logo {
  font-family: var(--font-logo);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--pink);
  text-shadow: 0 0 24px var(--pink-glow);
}

.footer-newsletter-text {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1 1 240px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.newsletter-form button {
  min-height: 60px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--pink);
  color: #12050c;
  font-family: var(--font-menu);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition-btn), box-shadow var(--transition-btn), background var(--transition-btn);
}

.newsletter-form button:hover {
  background: var(--pink-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--pink-glow);
}

.footer-nav-wrap {
  margin-bottom: 28px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.back-to-top {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: #1a0610;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 95, 162, 0.28);
}

/* Generic page */
.page-section {
  padding: 80px 0;
}

.page-content {
  color: var(--muted);
}

.page-content > * + * {
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1080px) {
  .interests-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    flex-basis: calc((100% - 54px) / 4);
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-decor {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.gallery-track-wrap {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .site-header {
    position: sticky;
    top: 0;
    background: rgba(6, 11, 11, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 72px;
    padding: 8px 0;
  }

  .brand-script {
    font-size: clamp(38px, 10vw, 48px);
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .menu-overlay {
    display: block;
  }

  .header-panel {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 20px 32px;
    background: rgba(6, 11, 11, 0.98);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .header-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav {
    flex: none;
    justify-content: flex-start;
    width: 100%;
  }

  .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .primary-menu li {
    border-bottom: 1px solid var(--border);
  }

  .primary-menu a {
    display: block;
    padding: 16px 4px;
    font-size: 14px;
    letter-spacing: 0.14em;
  }

  .primary-menu .current-menu-item > a {
    box-shadow: none;
    color: var(--pink);
  }

  .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .lang-switcher {
    align-self: center;
  }

  .header-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
  }

  .hero-section {
    background-position: 72% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 11, 11, 0.92) 0%,
      rgba(6, 11, 11, 0.84) 55%,
      rgba(6, 11, 11, 0.55) 100%
    );
  }

  .hero-inner {
    padding: 88px 0 300px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-kicker {
    letter-spacing: 0.28em;
    font-size: 10px;
  }

  .hero-title-text {
    font-size: clamp(56px, 16vw, 84px);
  }

  .hero-intro {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-media {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: auto;
    bottom: 24px;
    width: min(280px, 78vw);
    height: auto;
  }

  .hero-image {
    width: 100%;
    height: auto;
  }

  .hero-note {
    right: 50%;
    transform: translateX(50%) rotate(-6deg);
    bottom: 4%;
    text-align: center;
    white-space: normal;
    font-size: clamp(20px, 5.5vw, 26px);
  }

  .about-section {
    padding: 72px 0 64px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-photo-stack {
    padding: 0 8px;
  }

  .polaroid {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .about-copy .section-title {
    font-size: clamp(32px, 8vw, 44px);
  }

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

  .interests-section {
    padding: 72px 0;
  }

  .gallery-section {
    padding: 72px 0 64px;
  }

  .gallery-slider {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-track-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 -4px;
    padding-bottom: 4px;
  }

  .gallery-track {
    transform: none !important;
    width: max-content;
  }

  .gallery-item {
    flex: 0 0 min(72vw, 260px);
    scroll-snap-align: start;
  }

  .quote-section {
    padding: 64px 0;
  }

  .quote-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-content p {
    font-size: clamp(22px, 6vw, 30px);
  }

  .quote-decor {
    flex-direction: row;
    justify-content: flex-end;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .interests-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-inner {
    padding: 80px 0 280px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-dot-grid {
    display: none;
  }

  .gallery-item {
    flex: 0 0 min(78vw, 220px);
    min-width: 0;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .polaroid-note {
    width: 118px;
  }
}
