:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-section: #111111;
  --gold: #d4af37;
  --soft-gold: #f5e6c8;
  --champagne: #e7d3a3;
  --gradient-gold: linear-gradient(135deg, #d4af37, #f5e6c8);
  --text-primary: #f9f9f9;
  --text-secondary: #d6d6d6;
  --text-muted: #a1a1a1;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --container-max: 1280px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--soft-gold);
}

ul {
  list-style: none;
}

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

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ========================================
   SECTION LABELS & TITLES
======================================== */

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.section-title.center {
  text-align: center;
}

/* ========================================
   BUTTONS
======================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--gold {
  background: var(--gradient-gold);
  color: #000000;
  border-radius: 0;
}

.btn--gold:hover {
  color: #000000;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--gold);
  color: #000000;
}

/* ========================================
   HEADER / NAVIGATION
======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  padding: 20px 0;
}

.header--scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header--solid {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #000000;
  background: var(--gradient-gold);
  padding: 10px 24px;
  transition: all var(--transition);
}

.nav__cta:hover {
  color: #000000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.hamburger-line {
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: all var(--transition);
}

/* ========================================
   MOBILE OVERLAY
======================================== */

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.mobile-overlay__menu {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-overlay__link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.mobile-overlay__cta {
  color: var(--gold) !important;
}

/* ========================================
   HERO SECTION
======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, #1a1a1a 0%, #000000 70%);
}

.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) translateX(30px);
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__preheading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 14px 32px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero__scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   STORY SECTION
======================================== */

.story {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__image-wrapper {
  position: relative;
}

.story__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.story__image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.story__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ========================================
   FRAGRANCE PREVIEW
======================================== */

.fragrance-preview {
  padding: 120px 0;
  background: var(--bg-primary);
}

.fragrance-preview__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.fragrance-preview__bottle {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 48px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fragrance-preview__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

.fragrance-preview__img {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 350px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
}

.fragrance-preview__description {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  line-height: 1.7;
  margin-bottom: 48px;
}

.fragrance-preview__notes {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.note-item {
  text-align: center;
}

.note-item__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.note-item__value {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
}

/* ========================================
   COLLECTION TEASER
======================================== */

.collection {
  padding: 120px 0;
  background: var(--bg-section);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.collection__card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.08);
  transition: all var(--transition);
  overflow: hidden;
}

.collection__card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.collection__card-inner {
  padding: 48px 24px;
  text-align: center;
}

.collection__icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.collection__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.collection__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.collection__status {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ========================================
   FINLAND SECTION
======================================== */

.finland {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.finland__intro {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.finland__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.finland__item {
  text-align: center;
  padding: 40px 24px;
}

.finland__item-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.finland__item-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.finland__item-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   NOTIFY SECTION
======================================== */

.notify {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.notify::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.notify__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.notify__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.notify__form {
  width: 100%;
}

.notify__form-group {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 16px;
}

.notify__input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
  min-width: 0;
}

.notify__input::placeholder {
  color: var(--text-muted);
}

.notify__input:focus {
  border-color: var(--gold);
}

.notify__btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.notify__error {
  color: #e74c3c;
  font-size: 0.8rem;
  min-height: 20px;
  margin-bottom: 8px;
}

.notify__success {
  color: var(--gold);
  font-size: 0.8rem;
  min-height: 20px;
  margin-bottom: 8px;
}

.notify__privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.notify__privacy a {
  color: var(--gold);
  text-decoration: underline;
}

/* ========================================
   ABOUT PREVIEW
======================================== */

.about-preview {
  padding: 120px 0;
  background: var(--bg-section);
}

.about-preview__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-preview__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ========================================
   FOOTER
======================================== */

.footer {
  padding: 80px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.footer__tagline {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

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

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* ========================================
   PAGE HERO (Inner pages)
======================================== */

.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.page-hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   PAGE CONTENT
======================================== */

.page-content {
  padding: 80px 0 120px;
  background: var(--bg-primary);
}

.page-content__block {
  margin-bottom: 56px;
}

.page-content__block h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.page-content__block p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ========================================
   LEGAL CONTENT
======================================== */

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  list-style: disc;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}

/* ========================================
   CONTACT GRID
======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-info__item {
  margin-bottom: 24px;
}

.contact-info__item h3 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info__item a,
.contact-info__item p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
}

/* ========================================
   CONTACT FORM
======================================== */

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

.contact-form label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

/* ========================================
   ANIMATIONS
======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
======================================== */

@media (max-width: 1024px) {
  .story__grid {
    gap: 48px;
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ========================================
   RESPONSIVE — TABLET SMALL (max-width: 768px)
======================================== */

@media (max-width: 768px) {
  .nav__menu,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero__text {
    font-size: 0.9rem;
  }

  .hero__scroll-indicator {
    bottom: 24px;
  }

  .story {
    padding: 80px 0;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story__img {
    height: 350px;
  }

  .fragrance-preview {
    padding: 80px 0;
  }

  .fragrance-preview__bottle {
    width: 220px;
    height: 300px;
  }

  .fragrance-preview__img {
    width: 200px;
    height: 280px;
  }

  .fragrance-preview__notes {
    gap: 32px;
  }

  .collection {
    padding: 80px 0;
  }

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

  .finland {
    padding: 80px 0;
  }

  .finland__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .notify {
    padding: 80px 0;
  }

  .notify__form-group {
    flex-direction: column;
    gap: 12px;
  }

  .notify__btn {
    width: 100%;
  }

  .about-preview {
    padding: 80px 0;
  }

  .footer {
    padding: 60px 0 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-content {
    padding: 60px 0 80px;
  }
}

/* ========================================
   RESPONSIVE — MOBILE (max-width: 480px)
======================================== */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 16px;
  }

  .hero__badge,
  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

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

  .collection__card-inner {
    padding: 36px 20px;
  }

  .fragrance-preview__notes {
    flex-direction: column;
    gap: 24px;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .btn {
    padding: 14px 32px;
  }

  .mobile-overlay__link {
    font-size: 1.5rem;
  }

  .mobile-overlay__menu {
    gap: 24px;
  }
}