/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #c9a96e;
  --gold-light:#e8d5a8;
  --dark:      #0e0d0b;
  --dark-2:    #1a1814;
  --dark-3:    #252320;
  --text:      #e8e4dc;
  --text-muted:#9a9186;
  --white:     #faf8f4;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 40px rgba(0,0,0,.5);
  --trans:     all .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  letter-spacing: .02em;
}

.btn--primary {
  background: var(--gold);
  color: #0e0d0b;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201,169,110,.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: var(--trans);
}

.nav.scrolled {
  background: rgba(14,13,11,.92);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(201,169,110,.15);
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}

.nav__links {
  display: flex;
  gap: 40px;
}

.nav__links a {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: var(--trans);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--trans);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14,13,11,.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
  gap: 60px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  animation: float 8s ease-in-out infinite;
}
.blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c9a96e, transparent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6d2b7a, transparent);
  bottom: -80px; left: 10%;
  animation-delay: 3s;
}
.blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #1e5c35, transparent);
  top: 40%; left: 40%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BOTTLE SHOWCASE */
.hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bottle-showcase {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding: 40px 20px;
}

.bottle {
  border-radius: 40px 40px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.1);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.bottle:hover { transform: translateY(-12px) scale(1.03); }
.bottle::before {
  content: '';
  position: absolute;
  top: 0; left: 20%;
  width: 15%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.15) 0%, transparent 60%);
  border-radius: 0 0 8px 8px;
}

.bottle--1 {
  width: 110px; height: 280px;
  background: linear-gradient(160deg, #1a0a2e, #4a1060);
}
.bottle--2 {
  width: 95px; height: 240px;
  background: linear-gradient(160deg, #0d2b1a, #2a6040);
  transform: translateY(20px);
}
.bottle--3 {
  width: 120px; height: 200px;
  background: linear-gradient(160deg, #3d1a00, #7a3500);
  border-radius: 12px 12px 8px 8px;
  transform: translateY(40px);
}

.bottle__label {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
  width: 80%;
  backdrop-filter: blur(4px);
}

.label--wine .label__ornament::before { content: '❧'; font-size: 1rem; color: #e8c87a; }
.label--wine .label__name { display: block; font-family: 'Playfair Display', serif; font-size: .75rem; color: #e8c87a; font-weight: 700; margin: 4px 0 2px; }
.label--wine .label__year { display: block; font-size: .55rem; color: rgba(232,200,122,.7); letter-spacing: .1em; }
.label--wine .label__line { height: 1px; background: rgba(232,200,122,.3); margin: 5px 0; }
.label--wine .label__type { display: block; font-size: .5rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(232,200,122,.6); }

.label--gin .label__badge { font-size: .45rem; letter-spacing: .2em; color: #a8d8b0; border: 1px solid #a8d8b0; padding: 2px 6px; border-radius: 2px; display: inline-block; margin-bottom: 4px; }
.label--gin .label__name { display: block; font-family: 'Playfair Display', serif; font-size: .75rem; color: #e8f5eb; font-weight: 700; }
.label--gin .label__sub { display: block; font-size: .5rem; color: rgba(168,216,176,.6); letter-spacing: .08em; margin-top: 2px; }

.label--honey .label__hex { font-size: 1.2rem; line-height: 1; margin-bottom: 4px; color: #ffd700; }
.label--honey .label__name { display: block; font-family: 'Playfair Display', serif; font-size: .7rem; color: #ffe066; font-weight: 700; }
.label--honey .label__sub { display: block; font-size: .48rem; color: rgba(255,200,50,.6); letter-spacing: .08em; margin-top: 2px; }

/* =============================================
   STATS
   ============================================= */
.stats {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,169,110,.1);
  border-bottom: 1px solid rgba(201,169,110,.1);
  padding: 60px 24px;
}

.stats__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__num::after { content: '+'; }

.stat__label {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--dark); }

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

.about__image { display: flex; justify-content: center; }

.about__img-frame {
  position: relative;
  width: 280px;
  height: 320px;
}

.about__avatar {
  width: 240px;
  height: 280px;
  background: linear-gradient(145deg, var(--dark-3), var(--dark-2));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,169,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.about__avatar svg { width: 160px; }

.about__deco-ring {
  position: absolute;
  width: 260px; height: 300px;
  border: 2px solid rgba(201,169,110,.2);
  border-radius: var(--radius-lg);
  bottom: -20px; right: -20px;
  z-index: 1;
}

.about__text .section__eyebrow { margin-bottom: 8px; }
.about__text .section__title { margin-bottom: 24px; text-align: left; }

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about__text p strong { color: var(--text); font-weight: 600; }

.about__skills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.about__skills li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text);
}

.skill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--dark-2); }

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

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--trans);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,169,110,.2); }
.service-card:hover::before { opacity: 1; }

.service-card--accent {
  background: linear-gradient(145deg, rgba(201,169,110,.12), rgba(201,169,110,.04));
  border-color: rgba(201,169,110,.25);
}

.service-card__icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio { background: var(--dark); }

.portfolio__filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.12);
  color: var(--text-muted);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .85rem;
  cursor: pointer;
  transition: var(--trans);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0e0d0b;
}

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

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--trans);
  cursor: pointer;
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.portfolio-item.hidden { display: none; }

.portfolio-item__visual {
  height: 220px;
  background: linear-gradient(145deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-item__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.06), transparent 60%);
}

.pi-label {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 140px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  position: relative;
  z-index: 2;
}

.pi-ornament { font-size: 1.4rem; color: var(--accent, var(--gold)); margin-bottom: 4px; }
.pi-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--accent, #fff); }
.pi-year { font-size: .65rem; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-top: 3px; }
.pi-hr { height: 1px; background: rgba(255,255,255,.2); margin: 8px 0; }
.pi-sub { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.pi-badge { font-size: .55rem; letter-spacing: .2em; color: var(--accent, #fff); border: 1px solid var(--accent, #fff); padding: 2px 8px; border-radius: 2px; display: inline-block; margin-bottom: 6px; }
.pi-hops { font-size: 1.5rem; margin: 4px 0; }
.pi-hex-deco { font-size: .9rem; color: var(--accent, var(--gold)); letter-spacing: .3em; margin-bottom: 6px; opacity: .7; }
.pi-weight { font-size: .6rem; color: rgba(255,255,255,.4); margin-top: 6px; }
.pi-crest { font-size: 1.8rem; color: var(--accent, #fff); margin-bottom: 4px; }
.pi-abv { font-size: .6rem; color: rgba(255,255,255,.4); letter-spacing: .1em; margin-top: 6px; }
.pi-botanical { font-size: 1.5rem; margin-bottom: 4px; }
.pi-flame { font-size: 1.8rem; margin-bottom: 4px; }
.pi-warning { font-size: .55rem; color: #ff6b35; margin-top: 6px; letter-spacing: .06em; }

/* Product card portfolio items */
.pv--card {
  background: linear-gradient(145deg, var(--c1), var(--c2)) !important;
  align-items: center;
  justify-content: center;
}

.pi-product-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px 16px;
  width: 160px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.ppc__img {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.ppc__badge {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--accent, #4db8ff);
  color: #0e0d0b;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ppc__badge--green { background: #6fcf6f; color: #0e1a0e; }
.ppc__badge--gold  { background: #f5a623; color: #1a0e00; }

.ppc__title {
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.ppc__rating {
  font-size: .6rem;
  color: #ffd700;
  margin-bottom: 6px;
}
.ppc__rating span { color: rgba(255,255,255,.6); }

.ppc__price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent, #4db8ff);
  margin-bottom: 6px;
}

.ppc__tag {
  font-size: .5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 5px;
  margin-top: 2px;
}

.portfolio-item__info {
  padding: 20px 24px;
}
.portfolio-item__info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-item__info span {
  font-size: .8rem;
  color: var(--text-muted);
}

/* =============================================
   PROCESS
   ============================================= */
.process { background: var(--dark-2); }

.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 0 24px;
}

.process-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,169,110,.2);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-step__arrow {
  font-size: 1.5rem;
  color: rgba(201,169,110,.3);
  align-self: center;
  padding-top: 48px;
  flex-shrink: 0;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--dark); }

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

.contact__text .section__title {
  text-align: left;
  margin-bottom: 20px;
}

.contact__text > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.contact__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-muted);
  transition: var(--trans);
}
.contact__link svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact__link:hover { color: var(--gold); }

/* FORM */
.contact__form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--trans);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: .6; }
.form-group select option { background: var(--dark-3); }

.form-success {
  display: none;
  text-align: center;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.3);
  color: var(--gold);
  font-size: .9rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 0;
}

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

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.footer__brand p {
  font-size: .8rem;
  color: var(--text-muted);
}

.footer__copy {
  font-size: .8rem;
  color: var(--text-muted);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about__image { justify-content: center; }
  .about__text .section__title { text-align: center; }
  .about__skills { align-items: center; }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 120px 24px 60px; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__sub { margin: 0 auto 40px; }
  .hero__cta { justify-content: center; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__text .section__title { text-align: center; }
  .process__steps { flex-direction: column; align-items: center; }
  .process-step__arrow { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .bottle-showcase { gap: 12px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}
