/* ============================================
   SOCIETE SPIRITS - Premium Gin Brand
   Luxury / Premium Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #2D1B3D;
  --color-bg-alt: #231432;
  --color-bg-card: #3A2350;
  --color-primary: #5C3979;
  --color-secondary: #C5A3E0;
  --color-accent: #7d9d8d;
  --color-cream: #F5D08B;
  --color-white: #F8F6F7;
  --color-text: #d0c8d8;
  --color-text-muted: #8a7f96;
  --color-border: rgba(197, 163, 224, 0.25);

  /* Summer refresh accents */
  --color-peach: #E8A87C;
  --color-coral: #D4856A;
  --color-warm-glow: #F5C7A1;
  --color-sunset-overlay: rgba(232, 168, 124, 0.08);

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  --font-accent: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1400px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 1.125rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-secondary);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-weight: 400;
  line-height: 1.2;
}

.hidden {
  display: none !important;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.03em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-cream), var(--color-peach), var(--color-cream));
  margin: 1.5rem auto;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6.5rem 0;
}

.section + .section {
  border-top: 1px solid rgba(232, 168, 124, 0.1);
}

.section--alt {
  background:
    linear-gradient(135deg, rgba(232, 168, 124, 0.03) 0%, transparent 50%, rgba(197, 163, 224, 0.03) 100%),
    var(--color-bg-alt);
}

.section--botanicals {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 168, 124, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(197, 163, 224, 0.06) 0%, transparent 60%),
    var(--color-bg-alt);
}

.page-light .section--botanicals .section-subtitle,
.page-light .section--botanicals h2,
.page-light .section--botanicals > .container > p {
  color: var(--color-peach);
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-peach);
  transition: left var(--transition);
  z-index: -1;
}

.btn:hover {
  color: var(--color-bg);
  border-color: var(--color-peach);
}

.btn:hover::before {
  left: 0;
}

.btn--filled {
  background: var(--color-peach);
  color: var(--color-bg);
  border-color: var(--color-peach);
}

.btn--filled::before {
  background: var(--color-warm-glow);
}

.btn--cream {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.btn--cream::before {
  background: var(--color-cream);
}

.btn--cream:hover {
  color: var(--color-bg);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(197, 163, 224, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(45, 27, 61, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #2D1B3D;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: font-size var(--transition);
}

.nav--scrolled .nav__logo {
  font-size: 1.4rem;
}

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

.nav__link {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2D1B3D;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav__link:hover,
.nav__link--active {
  color: #5C3979;
}

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

/* Mobile Menu Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

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

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

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 168, 124, 0.15) 0%,
    rgba(45, 27, 61, 0.35) 25%,
    rgba(45, 27, 61, 0.5) 50%,
    rgba(45, 27, 61, 0.85) 100%
  );
  z-index: 1;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      #2D1B3D 0%,
      #3A2350 30%,
      #2D1B3D 60%,
      #231432 100%
    );
  background-size: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 2rem;
  overflow-wrap: break-word;
}

.hero__content--split {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 2rem;
  text-align: left;
}

.hero__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
}

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

.hero__bottle {
  max-height: 70vh;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
}

.hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero__content--split .hero__logo {
  margin: 0;
  max-width: 400px;
}

.hero__content--split .hero__tagline {
  text-align: left;
}

.hero__content--split .hero__description {
  text-align: left;
}

.hero__logo {
  max-width: 320px;
  margin: 0 auto 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.3s forwards;
}

.hero__logo img {
  width: 100%;
  height: auto;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.6s forwards;
}

.hero__title {
  font-size: clamp(2.2rem, 8vw, 6rem);
  color: var(--color-white);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.6s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-secondary);
}

.hero__description {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.9s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}

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

/* --- Page Hero (for inner pages) --- */
.page-hero {
  position: relative;
  height: 35vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7rem;
  background: linear-gradient(
    135deg,
    #2D1B3D 0%,
    #3A2350 50%,
    #231432 100%
  );
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(197, 163, 224, 0.08) 0%, transparent 70%);
}

.page-hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-hero__description {
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 550px;
  margin: 0 auto;
}

/* --- Botanicals Carousel --- */
/* --- Botanicals Grid --- */
.botanicals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

a.botanical-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.botanical-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.botanical-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.botanical-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.botanical-card:hover .botanical-card__image img {
  transform: scale(1.05);
}

.botanical-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 0.75rem 0.75rem;
  background: linear-gradient(to top, rgba(45, 27, 61, 0.93) 0%, rgba(58, 35, 80, 0.5) 50%, rgba(232, 168, 124, 0.05) 80%, transparent 100%);
}

.botanical-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.botanical-card__text {
  font-size: 0.78rem;
  color: var(--color-text);
  line-height: 1.4;
}

/* Legacy carousel (kept for compatibility) */
.carousel { position: relative; overflow: hidden; margin-top: 4rem; }
.carousel__track { display: flex; transition: transform 0.6s ease; gap: 2rem; }

/* --- Botanicals Grid (fallback for about page) --- */
.botanicals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.botanical-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.botanical-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(92, 57, 121, 0.08));
  opacity: 0;
  transition: opacity var(--transition);
}

.botanical-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.botanical-card:hover::before {
  opacity: 1;
}

.botanical-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.botanical-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.botanical-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.botanical-card__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-section__wrapper {
  position: relative;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.video-section__video {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 70vh;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 27, 61, 0.3) 0%,
    rgba(45, 27, 61, 0.1) 50%,
    rgba(45, 27, 61, 0.5) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section__content {
  text-align: center;
  padding: 2rem;
}

/* --- About Preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-preview__image {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #3A2350, #2D1B3D);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.about-preview__content h2 {
  margin-bottom: 2rem;
}

.about-preview__content p {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.about-preview__content .btn {
  margin-top: 1rem;
}

.about-preview--reverse {
  direction: rtl;
}

.about-preview--reverse > * {
  direction: ltr;
}

/* --- Pillars Section --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.pillar {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.pillar:hover {
  border-color: var(--color-secondary);
}

.pillar__icon {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.pillar__icon svg {
  width: 56px;
  height: 56px;
}

.pillar__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.pillar__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pillar__text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.pillar__keynote {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-cream);
  line-height: 1.6;
}

/* --- Cocktail Cards --- */
.cocktails-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.cocktail-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.cocktail-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.cocktail-card__image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #3A2350, #2D1B3D);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.cocktail-card__difficulty {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: rgba(45, 27, 61, 0.7);
  backdrop-filter: blur(10px);
}

.cocktail-card__body {
  padding: 2rem;
}

.cocktail-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cocktail-card__ingredients {
  margin-bottom: 1.5rem;
}

.cocktail-card__ingredients h4 {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.cocktail-card__ingredients li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(197, 163, 224, 0.07);
}

.cocktail-card__ingredients li:last-child {
  border-bottom: none;
}

.cocktail-card__tagline {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.cocktail-card__meta {
  margin-bottom: 1rem;
}

.cocktail-card__glass {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.cocktail-card__instructions {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.cocktail-card__garnish {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}

.cocktail-card__garnish strong {
  font-style: normal;
  color: var(--color-cream);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #3A2350, #2D1B3D);
  position: relative;
  overflow: hidden;
}

.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: rgba(45, 27, 61, 0.7);
  backdrop-filter: blur(10px);
}

.blog-card__body {
  padding: 2rem;
}

.blog-card__date {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* --- Lifestyle Grid --- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.lifestyle-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.lifestyle-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.lifestyle-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-grid__item:hover img {
  transform: scale(1.05);
}

.lifestyle-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 61, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lifestyle-grid__overlay span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.lifestyle-grid__item:hover .lifestyle-grid__overlay {
  opacity: 1;
}

/* --- Instagram Grid --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}

.instagram-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-grid__item:hover img {
  transform: scale(1.08);
}

.instagram-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 168, 124, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram-grid__item:hover .instagram-grid__overlay {
  opacity: 1;
}

.instagram-grid__icon {
  color: #F8F6F7;
  font-size: 1.5rem;
}

/* --- Shop / Product --- */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.product-showcase__image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #3A2350, #2D1B3D);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase__image-placeholder {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-showcase__details h2 {
  margin-bottom: 0.5rem;
}

.product-showcase__volume {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.product-showcase__description {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-showcase__botanicals {
  margin-bottom: 2.5rem;
}

.product-showcase__botanicals h4 {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 1rem;
  font-weight: 500;
}

.product-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-tag {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

/* --- Locator --- */
.locator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.locator-map {
  aspect-ratio: 4 / 3;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.locator-list h3 {
  margin-bottom: 2rem;
}

.locator-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.locator-item:first-child {
  padding-top: 0;
}

.locator-item__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 0.3rem;
}

.locator-item__address {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.locator-item__type {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-top: 0.5rem;
}

/* --- Contact / Inquiries Form --- */
.inquiries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
}

.inquiries-info h3 {
  margin-bottom: 1.5rem;
}

.inquiries-info p {
  margin-bottom: 2rem;
  color: var(--color-text);
}

.inquiries-detail {
  margin-bottom: 2rem;
}

.inquiries-detail__label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.inquiries-detail__value {
  font-size: 1.05rem;
  color: var(--color-white);
}

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

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-secondary);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C5A3E0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-select option {
  background: var(--color-bg);
  color: var(--color-white);
}

/* --- Newsletter --- */
.newsletter {
  text-align: center;
  padding: 6.5rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 168, 124, 0.06) 0%, transparent 70%),
    var(--color-bg);
  border-top: 1px solid rgba(232, 168, 124, 0.12);
}

.newsletter h2 {
  color: var(--color-peach);
}

.newsletter .section-subtitle {
  color: var(--color-cream);
}

.newsletter__description {
  font-size: 1.1rem;
  color: var(--color-cream);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.newsletter__form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-cream);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition);
}

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

.newsletter__input:focus {
  border-color: var(--color-secondary);
}

.newsletter__btn {
  white-space: nowrap;
  padding: 0.85rem 2rem;
}

.newsletter__note {
  font-size: 0.8rem;
  color: rgba(248, 246, 247, 0.5);
  margin-top: 1rem;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 2rem;
}

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

.footer__brand-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer__brand-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer__link {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-secondary);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.footer__age-gate {
  color: var(--color-text-muted);
}

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.footer__social:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(232, 168, 124, 0.06) 0%,
    transparent 40%,
    rgba(92, 57, 121, 0.05) 70%,
    rgba(197, 163, 224, 0.04) 100%
  );
  border-top: 1px solid rgba(232, 168, 124, 0.15);
  border-bottom: 1px solid rgba(232, 168, 124, 0.15);
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

/* --- Age Gate Modal --- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(45, 27, 61, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.age-gate.hidden {
  display: none;
}

.age-gate__box {
  text-align: center;
  max-width: 480px;
  padding: 4rem 3rem;
  border: 1px solid var(--color-border);
}

.age-gate__logo {
  margin-bottom: 2rem;
}

.age-gate__logo img {
  height: 150px;
  width: auto;
  margin: 0 auto;
}

.age-gate__text {
  margin-bottom: 2.5rem;
  color: #C5A3E0;
  font-size: 1.1rem;
}

.age-gate__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.age-gate__deny {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #C5A3E0;
  margin-top: 2rem;
}

/* --- Tasting Notes --- */
.tasting-notes {
  margin-bottom: 2.5rem;
}

.tasting-note {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.tasting-note:last-child {
  border-bottom: none;
}

.tasting-note__label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.tasting-note__value {
  color: var(--color-text);
  font-size: 1rem;
}

/* --- Animations --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* --- Light / Beige Page Theme --- */
.page-light {
  background-color: #F5F0E8;
  color: #3A2350;
}

.page-light h1,
.page-light h2,
.page-light h3,
.page-light h4 {
  color: #2D1B3D;
}

.page-light p,
.page-light li {
  color: #3A2350;
}

.page-light a {
  color: #5C3979;
}

.page-light a:hover {
  color: #C5A3E0;
}

/* Nav - light purple background */
.page-light .nav {
  background: rgba(197, 163, 224, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.page-light .nav.scrolled {
  background: rgba(197, 163, 224, 0.98);
  border-bottom-color: rgba(45, 27, 61, 0.15);
}

.page-light .nav__logo {
  color: #2D1B3D;
}

.page-light .nav__link {
  color: #2D1B3D;
}

.page-light .nav__link:hover,
.page-light .nav__link--active {
  color: #5C3979;
}

.page-light .nav__toggle span {
  background: #2D1B3D;
}

/* Page hero - beige gradient */
.page-light .page-hero {
  background: linear-gradient(180deg, #EDE6DA 0%, #F5F0E8 100%);
}

.page-light .page-hero__title {
  color: #2D1B3D;
}

.page-light .page-hero__description {
  color: #3A2350;
}

/* Hero banner (homepage) stays dark purple */
.page-light .hero {
  background: var(--color-bg);
}

.page-light .hero h1,
.page-light .hero h2,
.page-light .hero p {
  color: var(--color-white);
}

.page-light .hero__tagline {
  color: var(--color-text);
}

.page-light .hero .section-subtitle {
  color: var(--color-secondary);
}

.page-light .hero .btn {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.page-light .hero .btn.btn--filled {
  background: var(--color-peach);
  color: var(--color-bg);
  border-color: var(--color-peach);
}

.page-light .hero .btn.btn--filled:hover {
  background: var(--color-warm-glow);
  color: var(--color-bg);
  border-color: var(--color-warm-glow);
}

.page-light .hero .btn:hover {
  background: rgba(197, 163, 224, 0.15);
}

.page-light .section-subtitle {
  color: #5C3979;
}

.page-light .section-divider {
  background: linear-gradient(90deg, #5C3979, var(--color-peach), #5C3979);
}

.page-light .section--alt {
  background: #EDE6DA;
}

/* Buttons on beige */
.page-light .btn {
  border-color: #5C3979;
  color: #5C3979;
}

.page-light .btn:hover {
  background: rgba(92, 57, 121, 0.08);
}

.page-light .btn--filled {
  background: var(--color-peach);
  color: #2D1B3D;
  border-color: var(--color-peach);
}

.page-light .btn--filled:hover {
  background: var(--color-warm-glow);
  border-color: var(--color-warm-glow);
}

/* About page pillars */
.page-light .pillar {
  border-color: rgba(92, 57, 121, 0.15);
}

.page-light .pillar__icon {
  color: #5C3979;
}

.page-light .pillar__text {
  color: #4a3d5a;
}

.page-light .pillar__keynote {
  color: #5C3979;
}

/* About preview section */
.page-light .about-preview__text {
  color: #3A2350;
}

/* Botanical cards overlay stays dark for readability */
.page-light .botanical-card__overlay {
  background: linear-gradient(to top, rgba(45, 27, 61, 0.9) 0%, transparent 100%);
}

.page-light .botanical-card__overlay .botanical-card__title {
  color: #F8F6F7;
}

.page-light .botanical-card__overlay .botanical-card__text {
  color: #d0c8d8;
}

/* Cocktail cards on beige */
.page-light .cocktail-card {
  background: #FFFDF8;
  border-color: rgba(92, 57, 121, 0.12);
}

.page-light .cocktail-card:hover {
  border-color: #5C3979;
}

.page-light .cocktail-card__title {
  color: #2D1B3D;
}

.page-light .cocktail-card__tagline {
  color: #5a4a6e;
}

.page-light .cocktail-card__glass {
  color: #5C3979;
}

.page-light .cocktail-card__ingredients h4 {
  color: #5C3979;
}

.page-light .cocktail-card__ingredients li {
  color: #4a3d5a;
  border-bottom-color: rgba(92, 57, 121, 0.08);
}

.page-light .cocktail-card__instructions {
  color: #3A2350;
  border-top-color: rgba(92, 57, 121, 0.12);
}

.page-light .cocktail-card__garnish {
  color: #5a4a6e;
}

.page-light .cocktail-card__garnish strong {
  color: #5C3979;
}

/* Blog cards on beige */
.page-light .blog-card {
  background: #FFFDF8;
  border-color: rgba(92, 57, 121, 0.12);
}

.page-light .blog-card:hover {
  border-color: #5C3979;
}

.page-light .blog-card__image {
  background: linear-gradient(135deg, #EDE6DA, #E5DDD0);
}

.page-light .blog-card__category {
  color: #5C3979;
  border-color: #5C3979;
  background: rgba(245, 240, 232, 0.85);
}

.page-light .blog-card__title {
  color: #2D1B3D;
}

.page-light .blog-card__date {
  color: #5a4a6e;
}

.page-light .blog-card__excerpt {
  color: #3A2350;
}

/* Product showcase on beige (Shop) */
.page-light .product-showcase__image {
  background: linear-gradient(135deg, #EDE6DA, #E5DDD0);
  border-color: rgba(92, 57, 121, 0.12);
}

.page-light .product-showcase__volume {
  color: #5a4a6e;
}

.page-light .product-showcase__description {
  color: #3A2350;
}

.page-light .product-showcase__botanicals h4 {
  color: #5C3979;
}

.page-light .product-tag {
  border-color: rgba(92, 57, 121, 0.15);
  color: #3A2350;
}

/* Locator on beige */
.page-light .locator-map {
  background: #FFFDF8;
  border-color: rgba(92, 57, 121, 0.12);
}

.page-light .locator-item {
  border-bottom-color: rgba(92, 57, 121, 0.12);
}

.page-light .locator-item__name {
  color: #2D1B3D;
}

.page-light .locator-item__address {
  color: #4a3d5a;
}

.page-light .locator-item__type {
  color: #5C3979;
}

/* Inquiries form on beige */
.page-light .inquiries-info p {
  color: #3A2350;
}

.page-light .inquiries-detail__label {
  color: #5C3979;
}

.page-light .inquiries-detail__value {
  color: #2D1B3D;
}

.page-light .form-label {
  color: #5C3979;
}

.page-light .form-input,
.page-light .form-textarea,
.page-light .form-select {
  background: #FFFDF8;
  border-color: rgba(92, 57, 121, 0.2);
  color: #2D1B3D;
}

.page-light .form-input:focus,
.page-light .form-textarea:focus,
.page-light .form-select:focus {
  border-color: #5C3979;
}

.page-light .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235C3979' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.page-light .form-select option {
  background: #FFFDF8;
  color: #2D1B3D;
}

/* CTA banner stays dark purple */
.page-light .cta-banner {
  background: linear-gradient(135deg, #2D1B3D, #3A2350);
  color: #d0c8d8;
}

.page-light .cta-banner h2,
.page-light .cta-banner p {
  color: #F8F6F7;
}

.page-light .cta-banner .section-subtitle {
  color: #C5A3E0;
}

.page-light .cta-banner .btn.btn--filled {
  background: var(--color-peach);
  color: #2D1B3D;
  border-color: var(--color-peach);
}

.page-light .cta-banner .btn.btn--filled:hover {
  background: var(--color-warm-glow);
  color: #2D1B3D;
  border-color: var(--color-warm-glow);
}

.page-light .cta-banner .btn {
  border-color: #C5A3E0;
  color: #C5A3E0;
}

/* Newsletter stays dark on page-light */
.page-light .newsletter h2 {
  color: var(--color-peach);
}

.page-light .newsletter .section-subtitle {
  color: var(--color-cream);
}

.page-light .newsletter p {
  color: var(--color-cream);
}

.page-light .newsletter .newsletter__note {
  color: rgba(248, 246, 247, 0.5);
}

/* Footer stays dark purple */
.page-light .footer {
  background: #231432;
  color: #d0c8d8;
}

.page-light .footer h4 {
  color: #F8F6F7;
}

.page-light .footer a {
  color: #FAD79E;
}

.page-light .footer a:hover {
  color: #C5A3E0;
}

.page-light .footer p,
.page-light .footer__brand-text {
  color: #d0c8d8;
}

.page-light .footer__bottom {
  border-top-color: rgba(197, 163, 224, 0.25);
  color: #8a7f96;
}

.page-light .footer__social {
  color: #d0c8d8;
  border-color: rgba(208, 200, 216, 0.3);
}

.page-light .footer__social:hover {
  color: #C5A3E0;
  border-color: #C5A3E0;
}

/* 404 page on beige */
.page-light .error-page {
  background: #F5F0E8;
}

.page-light .error-page h1,
.page-light .error-page h2 {
  color: #2D1B3D;
}

.page-light .error-page p {
  color: #3A2350;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .botanicals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .botanicals {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-preview__image {
    max-height: 400px;
    aspect-ratio: 16 / 9;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .locator-content {
    grid-template-columns: 1fr;
  }

  .inquiries-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

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

  .lifestyle-grid__item--tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(197, 163, 224, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }

  .nav__links.active {
    right: 0;
  }

  .nav__link {
    font-size: 0.9rem;
  }

  .nav__toggle {
    display: flex;
    z-index: 1001;
  }

  .hero__content--split {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .hero__left {
    padding: 1rem;
  }

  .hero__content--split .hero__logo {
    max-width: 250px;
  }

  .hero__right {
    align-items: center;
  }

  .hero__content--split .hero__tagline,
  .hero__content--split .hero__description {
    text-align: center;
  }

  .hero__bottle {
    max-height: 45vh;
    max-width: 200px;
  }

  .botanicals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .botanical-card__title {
    font-size: 1.1rem;
  }

  .botanical-card__text {
    font-size: 0.8rem;
  }

  .botanicals {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter__form {
    flex-direction: column;
  }

  .newsletter__btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .age-gate__buttons {
    flex-direction: column;
  }

  .page-light .nav__links {
    background: rgba(45, 27, 61, 0.98);
  }

  .page-light .nav__links .nav__link {
    color: #d0c8d8;
  }
}

@media (max-width: 480px) {
  .botanicals {
    grid-template-columns: 1fr;
  }

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

  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 0 1rem;
  }

  .hero__content {
    padding: 0 0.5rem;
  }

  .hero__logo {
    max-width: 240px;
  }

  .hero__tagline {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .nav__logo {
    font-size: 1.3rem;
  }

  .page-hero__title {
    font-size: 2rem;
  }
}
