/* =============================================
   MSampaio Website — Main Stylesheet
   ============================================= */

/* --- Variables & Reset --- */
:root {
  --dark: #1a1f16;
  --forest: #2c3e2d;
  --sage: #5a6b4f;
  --cork: #c4a87a;
  --cork-light: #d4be96;
  --sand: #e8dcc8;
  --cream: #f5f0e8;
  --off-white: #faf8f4;
  --white: #fff;
  --text: #2a2a2a;
  --text-light: #6b6b6b;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

/* --- Navigation --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all .4s;
  background: transparent;
}
nav.scrolled {
  background: rgba(250, 248, 244, .95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, .06);
  padding: .8rem 3rem;
}

.nav-left { display: flex; align-items: center; gap: 1.5rem; }

.nav-logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: color .4s;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1.1;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}
nav.scrolled .nav-logo { color: var(--dark); }
nav.scrolled .nav-logo-sub { color: var(--text-light); }

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, .12);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all .4s;
}
nav.scrolled .lang-toggle {
  background: rgba(0, 0, 0, .05);
  border-color: rgba(0, 0, 0, .1);
}

.lang-btn {
  padding: .35rem .7rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  border: none;
  cursor: pointer;
  transition: all .3s;
  background: transparent;
  color: rgba(255, 255, 255, .5);
}
nav.scrolled .lang-btn { color: var(--text-light); }
.lang-btn.active {
  background: var(--cork);
  color: var(--dark);
  border-radius: 18px;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 500;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .3s;
}
nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a:hover { color: var(--cork); }

.nav-cta {
  background: var(--cork) !important;
  color: var(--dark) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--cork-light) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all .3s;
}
nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  height: 100vh; min-height: 600px;
  background: var(--forest);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 31, 22, .85), rgba(44, 62, 45, .7) 50%, rgba(90, 107, 79, .5));
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Default gradient when no image is set */
.hero-bg:not([style*="background-image"]) {
  background: radial-gradient(ellipse at 70% 50%, rgba(196, 168, 122, .15), transparent 60%),
              linear-gradient(180deg, var(--dark), var(--forest) 50%, var(--sage));
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 750px; padding: 0 3rem;
}
.hero-tag {
  font-size: .78rem; font-weight: 500;
  color: var(--cork);
  text-transform: uppercase; letter-spacing: .2em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s ease .3s forwards;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s ease .5s forwards;
}
.hero h1 em { font-style: italic; color: var(--cork-light); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255, 255, 255, .75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 550px;
  opacity: 0; animation: fadeUp .8s ease .7s forwards;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease .9s forwards;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .3s;
}
.btn-primary { background: var(--cork); color: var(--dark); }
.btn-primary:hover {
  background: var(--cork-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 168, 122, .3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .4);
}
.btn-outline:hover { border-color: var(--cork); color: var(--cork); }

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  text-align: center;
  opacity: 0; animation: fadeUp .8s ease 1.2s forwards;
}
.scroll-indicator span {
  display: block; width: 1px; height: 40px;
  background: rgba(255, 255, 255, .3);
  margin: 0 auto .5rem;
  position: relative; overflow: hidden;
}
.scroll-indicator span::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--cork);
  animation: scrollLine 2s ease infinite;
}
.scroll-indicator p {
  font-size: .6rem;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase; letter-spacing: .2em;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--dark);
  padding: 2.5rem 3rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem; color: var(--cork);
  line-height: 1; margin-bottom: .3rem;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase; letter-spacing: .15em;
}

/* --- Sections (shared) --- */
section { padding: 5.5rem 3rem; }
.section-tag {
  font-size: .73rem; font-weight: 600;
  color: var(--cork);
  text-transform: uppercase; letter-spacing: .2em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark); line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-text {
  font-size: 1.02rem; font-weight: 300;
  color: var(--text-light);
  line-height: 1.8; max-width: 600px;
}

/* --- About --- */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1200px; margin: 0 auto;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  background: var(--sand);
  border-radius: 4px;
  position: relative; overflow: hidden;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image .img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: .85rem;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(196, 168, 122, .08) 20px, rgba(196, 168, 122, .08) 40px);
}

.timeline {
  margin-top: 2.5rem;
  border-left: 2px solid var(--sand);
  padding-left: 2rem;
}
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -2.35rem; top: .4rem;
  width: 10px; height: 10px;
  background: var(--cork); border-radius: 50%;
}
.timeline-year {
  font-weight: 600; font-size: .85rem;
  color: var(--cork); letter-spacing: .05em;
}
.timeline-text {
  font-size: .95rem; color: var(--text-light); line-height: 1.6;
}

/* --- Services --- */
.services-section { background: var(--cream); }
.services-header {
  text-align: center;
  max-width: 600px; margin: 0 auto 4rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white);
  padding: 2.3rem 1.8rem;
  border-radius: 4px;
  border: 1px solid rgba(196, 168, 122, .15);
  transition: all .4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--cork);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem; color: var(--dark);
  margin-bottom: .7rem;
}
.service-card p {
  font-size: .88rem; color: var(--text-light); line-height: 1.7;
}

/* --- Materials --- */
.materials-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 3rem auto 0;
}
.material-card {
  text-align: center;
  padding: 1.8rem 1rem;
  border-radius: 4px;
  transition: all .3s;
}
.material-card:hover { background: var(--cream); }
.material-swatch {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto .8rem;
}
.material-swatch.cork   { background: linear-gradient(135deg, #c4a87a, #a6895c); }
.material-swatch.napa   { background: linear-gradient(135deg, #3a3a3a, #1a1a1a); }
.material-swatch.canvas { background: linear-gradient(135deg, #d4ccb8, #bfb49e); }
.material-swatch.leather{ background: linear-gradient(135deg, #6b4423, #4a2f17); }
.material-swatch.mixed  { background: conic-gradient(#c4a87a 0% 33%, #3a3a3a 33% 66%, #d4ccb8 66% 100%); }
.material-card h4 {
  font-family: var(--serif);
  font-size: .95rem; color: var(--dark);
  margin-bottom: .2rem;
}
.material-card p { font-size: .78rem; color: var(--text-light); }

/* --- Products --- */
.products-section { background: var(--dark); color: var(--white); }
.products-section .section-tag { color: var(--cork); }
.products-section .section-title { color: var(--white); }
.products-section .section-text { color: rgba(255, 255, 255, .6); }
.products-header {
  text-align: center;
  max-width: 600px; margin: 0 auto 4rem;
}
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.product-item {
  aspect-ratio: 1;
  background: var(--forest);
  border-radius: 4px;
  position: relative; overflow: hidden;
  cursor: pointer; transition: all .4s;
}
.product-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-item:hover img { transform: scale(1.05); }
.product-item::after {
  content: attr(data-label);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  font-size: .78rem; font-weight: 500;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .05em; text-transform: uppercase;
  transform: translateY(100%); transition: transform .4s;
}
.product-item:hover::after { transform: translateY(0); }
.product-item:hover { transform: scale(1.02); }
.placeholder-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .15); font-size: .72rem;
}
.product-item.large { grid-column: span 2; grid-row: span 2; }

/* --- Process --- */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; max-width: 1200px;
  margin: 3rem auto 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 2.5rem; left: 10%; right: 10%;
  height: 1px; background: var(--sand);
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 50px; height: 50px;
  background: var(--cork); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--serif); font-size: 1.2rem; color: var(--dark);
}
.process-step h4 {
  font-size: .85rem; font-weight: 600;
  color: var(--dark); margin-bottom: .4rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.process-step p {
  font-size: .82rem; color: var(--text-light); line-height: 1.5;
}

/* --- Retailers / Contact --- */
.retailers-section {
  background: var(--forest); color: var(--white);
  position: relative; overflow: hidden;
}
.retailers-section::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196, 168, 122, .1), transparent 70%);
  border-radius: 50%;
}
.retailers-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.retailers-section .section-tag { color: var(--cork); }
.retailers-section .section-title { color: var(--white); }
.retailers-section .section-text { color: rgba(255, 255, 255, .7); }

.retailer-benefits { margin-top: 2rem; display: grid; gap: 1rem; }
.benefit { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(196, 168, 122, .15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.benefit h4 {
  font-size: .88rem; font-weight: 600;
  color: var(--white); margin-bottom: .15rem;
}
.benefit p {
  font-size: .82rem; color: rgba(255, 255, 255, .6); line-height: 1.5;
}

/* --- Contact Form --- */
.contact-form {
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: .5rem;
}
.contact-form .form-sub {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .72rem; font-weight: 600;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--sans);
  font-size: .88rem;
  transition: border .3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cork);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}
.form-group select option {
  background: var(--dark); color: var(--white);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--cork); color: var(--dark);
  border: none; border-radius: 4px;
  font-family: var(--sans); font-size: .82rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; cursor: pointer;
  transition: all .3s; margin-top: .5rem;
}
.btn-submit:hover {
  background: var(--cork-light);
  transform: translateY(-2px);
}
.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Form success/error messages */
.form-status {
  padding: 1rem;
  border-radius: 4px;
  font-size: .88rem;
  text-align: center;
  margin-top: 1rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(90, 107, 79, .3);
  color: #a8d5a2;
  border: 1px solid rgba(90, 107, 79, .5);
}
.form-status.error {
  display: block;
  background: rgba(180, 60, 60, .2);
  color: #e8a0a0;
  border: 1px solid rgba(180, 60, 60, .4);
}

/* --- Footer --- */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .6);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand .footer-logo {
  font-family: var(--serif);
  font-size: 1.8rem; color: var(--white);
  margin-bottom: .2rem;
}
.footer-brand .footer-logo-sub {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .88rem; line-height: 1.7; max-width: 300px;
}
.footer-social {
  display: flex; gap: .8rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem; font-weight: 600;
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--cork); color: var(--dark);
}
.footer-col h4 {
  font-size: .78rem; font-weight: 700;
  color: var(--white);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1.2rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: .82rem; color: rgba(255, 255, 255, .5);
  text-decoration: none; margin-bottom: .6rem;
  line-height: 1.5; transition: color .3s;
}
.footer-col a:hover { color: var(--cork); }
.footer-bottom {
  max-width: 1200px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between;
  font-size: .72rem; color: rgba(255, 255, 255, .3);
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%  { top: -100%; }
  50% { top: 100%; }
  100%{ top: 100%; }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Mobile Menu --- */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26, 31, 22, .97);
  z-index: 99;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 1.8rem;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-overlay a {
  font-family: var(--serif);
  font-size: 1.8rem; color: var(--white);
  text-decoration: none; transition: color .3s;
}
.mobile-menu-overlay a:hover { color: var(--cork); }
.mobile-menu-overlay .mobile-lang {
  display: flex; gap: 1rem; margin-top: 1rem;
}
.mobile-menu-overlay .mobile-lang button {
  padding: .5rem 1.2rem;
  font-family: var(--sans); font-size: .85rem; font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: 20px; background: transparent;
  color: rgba(255, 255, 255, .7); cursor: pointer;
  transition: all .3s;
}
.mobile-menu-overlay .mobile-lang button.active {
  background: var(--cork); color: var(--dark);
  border-color: var(--cork);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: repeat(3, 1fr); }
  .product-item.large { grid-column: span 1; grid-row: span 1; }
  .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps  { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  nav { padding: .9rem 1.2rem; }
  nav.scrolled { padding: .7rem 1.2rem; }
  .nav-links { display: none !important; }
  .nav-toggle { display: block; }
  .nav-left { gap: 1rem; }
  .lang-toggle { display: none; }
  section { padding: 3.5rem 1.2rem; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1.2rem; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-sub { font-size: .92rem; }
  .btn { padding: .75rem 1.4rem; font-size: .78rem; }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.2rem; gap: 1.5rem;
  }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: .65rem; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { aspect-ratio: 16/9; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .process-step {
    display: grid; grid-template-columns: 50px 1fr;
    text-align: left; gap: .8rem; align-items: start;
  }
  .process-step .step-number { margin: 0; }
  .process-step h4, .process-step p { grid-column: 2; }
  .process-step h4 { margin-bottom: 0; }
  .retailers-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 1.8rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom {
    flex-direction: column; gap: .5rem; text-align: center;
  }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(196, 168, 122, .2);
  padding: 1rem 2rem;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .2);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
  flex: 1;
  min-width: 250px;
}
.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: .6rem 1.6rem;
  background: var(--cork);
  color: var(--dark);
  border: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .3s;
}
.cookie-btn-accept:hover {
  background: var(--cork-light);
}
.cookie-btn-more {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  text-decoration: underline;
  transition: color .3s;
}
.cookie-btn-more:hover {
  color: var(--cork);
}

/* --- reCAPTCHA styling --- */
.recaptcha-group {
  margin-bottom: 1.1rem;
}
.recaptcha-group .g-recaptcha {
  transform: scale(0.92);
  transform-origin: 0 0;
}
.captcha-error {
  color: #e8a0a0;
  font-size: .78rem;
  margin-top: .4rem;
}

/* --- Nav contact phone icon --- */
.nav-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1) !important;
  padding: 0 !important;
  margin-left: .5rem;
  transition: all .3s;
  color: rgba(255, 255, 255, .85) !important;
}
.nav-contact-icon:hover {
  background: var(--cork) !important;
  color: var(--dark) !important;
  transform: translateY(-1px);
}
nav.scrolled .nav-contact-icon {
  background: rgba(0, 0, 0, .06) !important;
  color: var(--text-light) !important;
}
nav.scrolled .nav-contact-icon:hover {
  background: var(--cork) !important;
  color: var(--dark) !important;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* --- Password Gate --- */
.pw-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
}
.pw-box {
  text-align: center; padding: 3rem 2.5rem;
  background: var(--off-white); border-radius: 12px;
  max-width: 380px; width: 90%;
}
.pw-logo {
  font-family: var(--serif); font-size: 2rem; color: var(--dark);
  display: block; margin-bottom: 1rem;
}
.pw-text {
  font-family: var(--sans); font-size: .9rem; color: var(--text-light);
  margin-bottom: 1.5rem; line-height: 1.5;
}
.pw-input {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--sand);
  border-radius: 8px; font-family: var(--sans); font-size: 1rem;
  background: var(--white); margin-bottom: .8rem; text-align: center;
  outline: none; transition: border .2s;
}
.pw-input:focus { border-color: var(--cork); }
.pw-btn {
  width: 100%; padding: .8rem; border: none; border-radius: 8px;
  background: var(--dark); color: var(--cream);
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  cursor: pointer; transition: background .2s;
}
.pw-btn:hover { background: var(--forest); }
.pw-error {
  color: #c0392b; font-size: .85rem; margin-top: .5rem;
}
