:root {
  --green-deep: #0d2b1a;
  --green-dark: #143d26;
  --green-mid: #1e5c38;
  --green-bright: #072f17;
  --green-accent: #3aaa6b;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.48);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--green-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--green-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--green-accent);
  border-radius: 3px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(13, 43, 26, 0.92);
  backdrop-filter: blur(14px);
  /* border-bottom: 1px solid rgba(58, 170, 107, 0.18); */
  border-bottom: 2px solid rgb(29, 236, 181);
  box-shadow: #ede5d4 0px 1px 3px, rgba(255, 255, 255, 0.1) 0px 1px 2px;
  transition: padding 0.4s;
}

nav.scrolled {
  padding: 0.7rem 3rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo span {
  color: var(--white);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.7s ease filter 0.9s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--green-accent);
  filter: brightness(1.1);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 40%, #1a4a2e 0%, var(--green-deep) 65%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(58, 170, 107, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(58, 170, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 170, 107, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  padding: 1rem 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 1rem 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 0;
}

.hero-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.9) contrast(1.05);
}

.hero-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 3;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hero-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.hero-badge span:last-child {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--green-dark);
  border-top: 1px solid rgba(58, 170, 107, 0.2);
  border-bottom: 1px solid rgba(58, 170, 107, 0.2);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
  display: block;
}

.stat-divider {
  width: 1px;
  background: rgba(58, 170, 107, 0.2);
  align-self: stretch;
}

/* ─── SECTION COMMON ─── */
section {
  padding: 6rem 3rem;
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.section-eyebrow::before {
  content: '—';
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--green-accent);
}

.section-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 600px;
}

/* ─── ABOUT FENICE ─── */
.about {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.85);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--green-dark);
  overflow: hidden;
}

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

.about-tag {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--gold);
  padding: 0.6rem 1.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.about-list {
  list-style: none;
  margin-top: 2rem;
}

.about-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── PRODUCTS ─── */
.products {
  background: var(--green-deep);
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.products-header .section-body {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(58, 170, 107, 0.1);
  border: 1px solid rgba(58, 170, 107, 0.1);
}

.product-card {
  background: var(--green-dark);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: default;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.product-card:hover {
  background: #1a4a2e;
  transform: translateY(-4px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  background: rgba(58, 170, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.product-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
}

/* ─── GALLERY ─── */
.gallery {
  background: var(--green-dark);
  padding: 6rem 0;
}

.gallery-header {
  padding: 0 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 4px;
  padding: 0 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(0.7) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 43, 26, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gallery-item.tall img {
  height: 420px;
}

/* ─── PROCESS ─── */
.process {
  background: radial-gradient(ellipse at center bottom, #1a4a2e 0%, var(--green-deep) 70%);
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-accent), var(--gold), var(--green-accent), transparent);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: var(--green-dark);
  border: 1px solid var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.process-step:hover .process-num {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--green-deep);
}

.process-step h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

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

/* ─── FEATURES ─── */
.features {
  background: var(--green-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.features-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.features-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.8);
}

.features-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--green-dark) 100%);
}

.features-content {
  padding: 5rem 4rem 5rem 3rem;
}

.features-content .section-eyebrow {
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--green-accent);
}

.feature-item h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.feature-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TESTIMONIAL / QUOTE ─── */
.quote-section {
  background: var(--green-mid);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--cream);
}

.quote-source {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── COLOR PALETTE ─── */
.palette-section {
  background: var(--green-deep);
}

.palette-header {
  text-align: center;
  margin-bottom: 4rem;
}

.palette-scroll {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  margin-bottom: 1rem;
}

.swatch {
  height: 80px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.swatch:hover {
  transform: scaleY(1.2);
  z-index: 2;
}

.swatch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 3px;
  opacity: 0;
  transition: opacity 0.3s;
}

.swatch:hover .swatch-label {
  opacity: 1;
}

.palette-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.palette-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── DISTRIBUTOR SECTION ─── */
.distributor {
  background: linear-gradient(160deg, #1a4a2e 0%, var(--green-deep) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.distributor-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.official-badge {
  width: 220px;
  height: 220px;
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  transform: rotate(-5deg);
}

.official-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.official-badge .badge-title {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.official-badge .badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.official-badge .badge-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dist-list {
  list-style: none;
}

.dist-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.dist-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(58, 170, 107, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.dist-text h4 {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

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

/* ─── CONTACT ─── */
.contact {
  background: var(--green-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact a {
  color: var(--cream-dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

.contact-info .section-title {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.contact-detail-text h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text p {
  font-size: 0.88rem;
  color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-accent);
}

.form-group select option {
  background: var(--green-dark);
}

.form-submit {
  background: var(--green-accent);
  border: none;
  color: var(--white);
  padding: 1.1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--green-deep);
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(58, 170, 107, 0.15);
  padding: 4rem 3rem 2rem;
}

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

.footer-brand {}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  pointer-events: none;
}



.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-flags span {
  font-size: 1.2rem;
}

.footer-agency {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-agency a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}

/* ─── RIBBON ─── */
.ribbon {
  background: var(--green-accent);
  color: var(--green-deep);
  padding: 0.7rem 0;
  overflow: hidden;
}

.ribbon-inner {
  display: flex;
  gap: 4rem;
  /* animation: marquee 30s linear infinite; */
  white-space: nowrap;
}

.ribbon span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
  }

  .hero-visual {
    display: none;
  }

  .about,
  .distributor,
  .contact,
  .features {
    grid-template-columns: 1fr;
  }

  .features-visual {
    min-height: 300px;
  }

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

  .stat-divider {
    display: none;
  }

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

  .gallery-item.tall img,
  .gallery-item img {
    height: 220px;
  }

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

  .palette-scroll {
    grid-template-columns: repeat(6, 1fr);
  }

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

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

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .stats-bar {
    padding: 2rem 1.5rem;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
  }

  .gallery-header {
    padding: 0 1.5rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .palette-scroll {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .about-img-accent {
    display: none;
  }
}

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

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
  }
}

/* ─── LOGO PLACEHOLDER ─── */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-leaf {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green-accent), var(--green-bright));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6), 0 4px 12px rgba(0,0,0,0.25);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(13,43,26,0.92);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(13,43,26,0.92);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}

/* ══════════════════════════════════════
   FENICE — CONTACT MODAL
══════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 18, 10, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

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

.modal-box {
  background: #0f2c1a;
  border: 1px solid rgba(180, 155, 100, 0.25);
  border-radius: 3px;
  max-width: 460px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #8b6914, #c9a84c);
}

.modal-icon-wrap {
  display: flex;
  justify-content: center;
  padding: 36px 32px 0;
}

.modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-icon svg {
  width: 30px;
  height: 30px;
}

.modal-icon.success {
  background: rgba(46, 125, 79, 0.15);
  border: 1px solid rgba(46, 125, 79, 0.4);
}

.modal-icon.error {
  background: rgba(180, 50, 50, 0.15);
  border: 1px solid rgba(180, 50, 50, 0.4);
}

.modal-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  animation: modal-pulse 2s ease-out infinite;
}

.modal-icon.success::after { border: 1px solid rgba(46, 125, 79, 0.3); }
.modal-icon.error::after   { border: 1px solid rgba(180, 50, 50, 0.3); }

@keyframes modal-pulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  70%  { transform: scale(1.18); opacity: 0;   }
  100% { transform: scale(1.18); opacity: 0;   }
}

.modal-body {
  padding: 24px 36px 36px;
  text-align: center;
}

.modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
  margin-top: 20px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.75rem;
  color: #f0ebe0;
  line-height: 1.25;
  margin-bottom: 14px;
}

.modal-title em {
  font-style: italic;
  color: #c9a84c;
}

.modal-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(220, 210, 190, 0.7);
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.modal-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c55, transparent);
  margin: 0 auto 28px;
}

.modal-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(180, 155, 100, 0.35);
  color: #c9a84c;
  padding: 11px 32px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.25s;
}

.modal-close-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.6);
}

.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-x:hover { background: rgba(255, 255, 255, 0.1); }

.modal-x svg {
  width: 11px; height: 11px;
  stroke: rgba(220, 210, 190, 0.5);
  stroke-width: 2;
}

.modal-watermark {
  position: absolute;
  bottom: 10px; right: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.18);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}