/* CSS Document */

/* ======================================================================
   Atlantissea stylesheet
   Cleaned and reorganized around the current homepage, header, footer, and JS
   Sections
   00. Tokens and variables
   01. Loader
   02. Base and reset
   03. Layout helpers
   04. Header and navigation
   05. Buttons and focus states
   06. Hero
   07. About section
   07B. Lazy background utility
   08. Editorial statement
   09. Support cards grid
   10. Topic banner
   11. Featured product showcase
   12. Product grid
   13. Latest posts
   14. Contact
   15. Recipes
   16. Tradition banner
   17. Tradition hero
   18. Placeholders
   19. Footer
   20. Responsive global adjustments
   ====================================================================== */

/* ======================================================================
   00. TOKENS, VARIABLES
   ====================================================================== */
:root{
  --bg: #0b0b0b;
  --panel: rgba(255,255,255,0.04);
  --text: #f2f2f2;
  --muted: rgba(242,242,242,0.72);
  --gold: #8b7a2b;
  --gold-2: #b79b3a;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 50px rgba(0,0,0,0.55);
  --radius: 18px;
  --header-h: 100px;
  --container: 1440px;
  --inner-page-hero-min: clamp(400px, 52vh, 560px);
  --inner-page-hero-pad-top: calc(var(--header-h) + 34px);
  --inner-page-hero-pad-bottom: clamp(34px, 5vh, 56px);
}

/* ======================================================================
   01. HOMEPAGE LOADER
   ====================================================================== */

/* ======================================================================
   02. BASE, RESET, GLOBAL ELEMENTS
   ====================================================================== */
*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

/* ======================================================================
   03. GLOBAL LAYOUT HELPERS
   ====================================================================== */
.main{
  padding-top: var(--header-h);
  min-height: 60vh;
}

.container{
  width: min(100%, calc(var(--container) + 80px));
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 77px);
}

.section{
  padding-top: 70px; /* tighter than 20px */
}

/* Reduce space under "Practical Information" only */
#selection.section{
  padding-bottom: 20px; /* was effectively 70px */
  padding-top: 70px; 
}

/* Reduce space above the cards that follow */
.section-cards{
  padding-top: 10px; /* tighter than 20px */
}

.section-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 10px 0;
  font-size: clamp(24px, 3vw, 36px);
}

.section-lead{
  margin: 0 0 26px 0;
  color: var(--muted);
  max-width: 100%;
}

/* ======================================================================
   04. HEADER, NAVIGATION
   ====================================================================== */

body.mobile-menu-open{
  overflow: hidden;
}

.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.00);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.header.is-solid{
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner{
  height: var(--header-h);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.brand-logo{
  height: 65px;
  width: auto;
}

.nav{
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-link{
  color: rgba(242,242,242,0.84);
  padding: 10px 6px;
}

.nav-link:hover{
  color: #ffffff;
}

.nav-item{
  position: relative;
}

.nav-item--has-dropdown{
  display: flex;
  align-items: center;
}

.nav-item--has-dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
  background: transparent;
}

.nav-link--dropdown{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link--dropdown::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.82;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-dropdown{
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  z-index: 1000;
}

.nav-dropdown-link{
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.90);
  transition: background 160ms ease, color 160ms ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible{
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

.nav-dropdown-divider{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 10px;
}

.nav-dropdown-badge{
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(183,155,58,0.15);
  color: rgba(183,155,58,0.90);
  border: 1px solid rgba(183,155,58,0.25);
  vertical-align: middle;
}

.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown:focus-within .nav-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item--has-dropdown:hover .nav-link--dropdown::after,
.nav-item--has-dropdown:focus-within .nav-link--dropdown::after{
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

.header-cta{
  display: none;
}

/* ======================================================================
   04B. MOBILE NAVIGATION
   ====================================================================== */

.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

.nav-toggle-line{
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav{
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 59;
  padding: 0 16px 16px 16px;
  background: transparent;
}

.mobile-nav-panel{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.42);
}

.mobile-nav-link{
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.92);
  transition: background 140ms ease, color 140ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible{
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

.mobile-nav-group{
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-group-head{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}

.mobile-nav-link--group{
  margin: 0;
}

.mobile-subnav-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: rgba(242,242,242,0.92);
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.mobile-subnav-toggle:hover,
.mobile-subnav-toggle:focus-visible{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}

.mobile-subnav-toggle-icon{
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-subnav-toggle[aria-expanded="true"] .mobile-subnav-toggle-icon{
  transform: rotate(225deg);
}

.mobile-subnav{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px 14px;
}

.mobile-subnav-link{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.78);
  transition: background 140ms ease, color 140ms ease;
}

.mobile-subnav-link:hover,
.mobile-subnav-link:focus-visible{
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.mobile-subnav-heading{
  padding: 10px 12px 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.70);
}

/* Phone layout only */
@media (max-width: 767px){
  .header-inner{
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 16px;
  }

  .brand-logo{
    height: 52px;
  }

  .nav,
  .header-cta{
    display: none;
  }

  .nav-toggle{
    display: inline-flex;
  }

  .header{
    height: var(--header-h);
  }
}

/* ======================================================================
   05. BUTTONS
   ====================================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform 120ms ease, opacity 120ms ease, border-color 120ms ease;
  white-space: nowrap;
}

.btn:active{ transform: translateY(1px); }

.btn-gold{
  background: linear-gradient(180deg, rgba(183,155,58,0.95), rgba(139,122,43,0.95));
  color: #141414;
  border-color: rgba(255,255,255,0.10);
}

.btn-gold--ghost{
  background: rgba(183,155,58,0.10);
  color: rgba(242,242,242,0.95);
  border-color: rgba(183,155,58,0.50);
}

.btn-gold--ghost:hover{
  background: rgba(183,155,58,0.16);
  border-color: rgba(183,155,58,0.70);
}

.btn-primary{
  background: linear-gradient(180deg, rgba(183,155,58,0.95), rgba(139,122,43,0.95));
  color: #141414;
  border-color: rgba(255,255,255,0.10);
}

.btn-link{
  border-color: rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(242,242,242,0.92);
}

.btn-link:hover{
  border-color: rgba(255,255,255,0.30);
}


a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 2px solid rgba(183,155,58,0.85);
  outline-offset: 2px;
}


/* ======================================================================
   06. HOMEPAGE, HERO BANNER
   ====================================================================== */

.hero{
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  width: 100%;
  overflow: hidden;

  min-height: 520px;
  height: 100vh;
  max-height: 1440px;
}

.hero-media{
  position:absolute;
  inset:0;
}

.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(0.92) contrast(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1100px 700px at 20% 40%, rgba(0,0,0,0.25), rgba(0,0,0,0.35)),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.20));
}

.hero-inner{
  position: relative;
  height: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
 /* padding: 100px 20px;*/
}

.hero-title{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin: 0 0 14px 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hero-subtitle{
  margin: 0 0 22px 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

.hero-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}



/* ======================================================================
   HOMEPAGE, CENTERED ABOUT SECTION
   ====================================================================== */

.about-centered{
  background: #050505;
  padding: 84px 0 88px 0;
  text-align: center;
}

.about-centered-inner{
  max-width: 1080px;
  margin: 0 auto;
}

.about-centered-title{
  margin: 0 auto 24px auto;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.98);
  text-wrap: balance;
}

.about-centered-text{
  margin: 0 auto;
  max-width: 940px;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.75;
  color: rgba(242,242,242,0.84);
}

.about-centered-text strong{
  color: rgba(255,255,255,0.98);
  font-weight: 700;
}

@media (max-width: 640px){
  .about-intro-kicker{
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  .about-intro-title{
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.12;
  }

  .about-intro-brand{
    display: inline;
    padding: 2px 8px 4px 8px;
    margin-right: 6px;
  }

  .about-intro-link{
    width: 100%;
    max-width: 100%;
  }
    
  .about-centered{
    padding: 56px 0 60px 0;
  }

  .about-centered-title{
    font-size: clamp(28px, 8vw, 38px);
  }

  .about-centered-text{
    font-size: 18px;
    line-height: 1.68;
  }
}

.about-intro{
  position: relative;
  padding: 84px 0 72px 0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(183,155,58,0.10), rgba(183,155,58,0.00) 70%),
    #050505;
  overflow: hidden;
}

.about-intro::before,
.about-intro::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(183,155,58,0),
    rgba(183,155,58,0.55),
    rgba(255,255,255,0.18),
    rgba(183,155,58,0.55),
    rgba(183,155,58,0)
  );
}

.about-intro::before{
  top: 0;
}

.about-intro::after{
  bottom: 0;
}

.about-intro-inner{
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-kicker{
  margin: 0 0 18px 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.92);
}

.about-intro-title{
  margin: 0 auto 34px auto;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  color: rgba(255,255,255,0.98);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.about-intro-card{
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255,255,255,0.98);
  color: #111111;
  border-radius: 22px;
  box-shadow:
    0 18px 50px rgba(0,0,0,0.35),
    0 1px 0 rgba(255,255,255,0.35) inset;
}

.about-intro-text{
  margin: 0;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.68;
  color: #161616;
}

.about-intro-text + .about-intro-text{
  margin-top: 20px;
}

.about-intro-text-secondary{
  color: rgba(0,0,0,0.76);
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.75;
}

.about-intro-brand{
  display: inline-block;
  margin-right: 10px;
  padding: 3px 12px 5px 12px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
  vertical-align: baseline;
}

.about-intro-actions{
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.about-intro-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111111;
  color: rgba(255,255,255,0.96);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.about-intro-link::after{
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.about-intro-link:hover{
  background: rgba(183,155,58,0.95);
  color: #111111;
  transform: translateY(-1px);
}

@media (max-width: 980px){
  .about-centered{
    padding: 68px 0 72px 0;
  }

  .about-centered-title{
    margin-bottom: 18px;
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.12;
  }

  .about-centered-text{
    font-size: clamp(18px, 4.6vw, 22px);
    line-height: 1.7;
  }
    
  .about-intro{
    padding: 64px 0 56px 0;
  }

  .about-intro-title{
    margin-bottom: 24px;
  }

  .about-intro-card{
    border-radius: 18px;
    padding: 24px 20px;
  }

  .about-intro-text{
    line-height: 1.6;
  }

  .about-intro-text-secondary{
    line-height: 1.65;
  }
}


/* ======================================================================
   07. HOMEPAGE, ABOUT SECTION
   Centered kicker and title
   Paragraph on the left, right aligned
   Bullet points on the right, left aligned
   ====================================================================== */

.home-about{
  position: relative;
  padding: 120px 0 120px 0;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 58%,
      rgba(0,0,0,0.10) 100%
    ),
    url('/new/assets/img/design/products/Bottom_General.png');
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom, center bottom;
  background-size: 150% auto;
}

.home-about::before,
.home-about::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.55;
  background: linear-gradient(
    90deg,
    rgba(183,155,58,0.00),
    rgba(183,155,58,0.55),
    rgba(255,255,255,0.18),
    rgba(183,155,58,0.55),
    rgba(183,155,58,0.00)
  );
  z-index: 4;
}

.home-about::before{
  top: 0;
}

.home-about::after{
  bottom: 0;
}

.home-about__inner{
  position: relative;
  z-index: 3;
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: 0 clamp(24px, 2.2vw, 48px);
}

.home-about__kicker{
  margin: 0 0 10px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.70);
}

.home-about__title{  
  margin: 0 0 16px 0;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 16px 40px rgba(0,0,0,0.55);
  text-wrap: balance;
}

.home-about__content{
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 460px);
  justify-content: center;
  column-gap: 2rem;
  align-items: start;
  transform: translateX(70px);
}

.home-about__text{
  width: 100%;
  max-width: 500px;
  text-align: right;
  justify-self: end;
}

.home-about__text p{
  margin: 0;
  color: rgba(242,242,242,0.84);
  font-size: clamp(17px, 1.14vw, 20px);
  line-height: 1.9;
}

.home-about__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.95);
  text-decoration: none;
}

.home-about__link::after{
  content: "›";
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}

.home-about__link:hover{
  color: rgba(183,155,58,1);
}

.home-about__points{
  width: 100%;
  max-width: 460px;
  justify-self: start;
}
.home-about__points ul{
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}

.home-about__points li{
  color: rgba(255,255,255,0.88);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.72;
  margin-bottom: 10px;
}

.home-about__points li::marker{
  color: rgba(183,155,58,0.95);
}


/* Desktop, keep your current working version */
.home-about__content{
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 460px);
  justify-content: center;
  column-gap: 2rem;
  align-items: start;
  transform: translateX(60px);
}

.home-about__text{
  width: 100%;
  max-width: 500px;
  text-align: right;
  justify-self: end;
}

.home-about__points{
  width: 100%;
  max-width: 460px;
  justify-self: start;
}

/* Medium screens, keep 2 columns but remove overflow risk */
@media (max-width: 1200px){
    
  .home-about__title{
    white-space: nowrap;
  }
    
  .home-about__content{
    grid-template-columns: minmax(0, 440px) minmax(0, 400px);
    column-gap: 1.6rem;
    transform: none;
    gap: 30px;
  }

  .home-about__text{
    max-width: 440px;
  }

  .home-about__points{
    max-width: 400px;
  }
    
  .home-about__inner{
    width: min(100%, 1320px);
  }

  .home-about__title{
    font-weight: 500;
    font-size: clamp(30px, 4vw, 45px);
  }
}

@media (max-width: 980px){
  .home-about{
    padding: 40px 0 36px 0;
    background-position: center bottom;
    background-size: 140% 180px;
  }

  .home-about__title{
    margin-bottom: 22px;
    font-weight: 500;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.14;
    white-space: normal;
  }

  .home-about__content{
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .home-about__text,
  .home-about__points{
    max-width: none;
    justify-self: stretch;
    text-align: left;
  }
  .home-about__text p{
    font-size: 17px;
    line-height: 1.8;
  }
}

/* Tablet and below, stack cleanly */
@media (max-width: 834px){
  .home-about__content{
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    column-gap: 0;
    transform: none;
  }

  .home-about__title{
  font-weight: 500;
  font-size: clamp(30px, 4vw, 45px);
  }
    
  .home-about__text,
  .home-about__points{
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
  }

  .home-about__text{
    text-align: left;
  }
}

@media (max-width: 640px){

  .home-about{
    background-position: center bottom;
    background-size: 140% 180px;
  }
    
  .home-about__inner{
    padding: 0 20px;
  }

  .home-about__kicker{
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .home-about__title{
  font-weight: 500;
  font-size: clamp(30px, 4vw, 45px);
  }

  .home-about__text p{
    font-size: 16px;
    line-height: 1.75;
  }

  .home-about__points li{
    font-size: 17px;
    line-height: 1.65;
  }
}

/* ======================================================================
   08A. HOMEPAGE, ABOUT FISH MARQUEE
   Full width species strip with underwater floor background on the section.
   ====================================================================== */

.home-about-fish-wrap{
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -10px;
  overflow: hidden;
}

.home-about-fish{
  --fish-h: 100px;
  --fish-gap: 1200px;
  --fish-rise: 18px;
  --fish-lg-scale: 1.22;
  width: 100%;
  min-height: calc((var(--fish-h) * var(--fish-lg-scale)) + var(--fish-rise) + 70px);
  padding-top: calc(var(--fish-rise) + 28px);
  padding-bottom: 16px;
  display: flex;
  align-items: flex-end;
}

.home-about-fish__track{
  display: flex;
  align-items: flex-end;
  gap: var(--fish-gap);
  width: max-content;
  will-change: transform;
  animation: fish-swim-loop 200s linear infinite;
}

.home-about-fish__group{
  display: flex;
  align-items: flex-end;
  gap: var(--fish-gap);
  flex: 0 0 auto;
}

.home-about-fish__item{
  height: var(--fish-h);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 0 0 auto;
}

.home-about-fish__item.is-lg{
  height: calc(var(--fish-h) * var(--fish-lg-scale));
}

.home-about-fish__image{
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  transform-origin: center center;
  animation: fish-swim 7s ease-in-out infinite;
}

.home-about-fish__group .home-about-fish__item:nth-child(2) .home-about-fish__image{
  animation-delay: 0.35s;
}

.home-about-fish__group .home-about-fish__item:nth-child(3) .home-about-fish__image{
  animation-delay: 0.7s;
}

.home-about-fish__group .home-about-fish__item:nth-child(4) .home-about-fish__image{
  animation-delay: 1.05s;
}

.home-about-fish__group .home-about-fish__item:nth-child(5) .home-about-fish__image{
  animation-delay: 1.4s;
}

.home-about-fish__group .home-about-fish__item:nth-child(6) .home-about-fish__image{
  animation-delay: 1.75s;
}

@keyframes fish-swim-loop{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(calc(-50% - (var(--fish-gap) / 2)));
  }
}

@keyframes fish-swim{
  0%{
    transform: translateY(0) rotate(0deg);
  }
  25%{
    transform: translateY(-8px) rotate(-2deg);
  }
  50%{
    transform: translateY(-18px) rotate(2deg);
  }
  75%{
    transform: translateY(-8px) rotate(2deg);
  }
  100%{
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 1024px){
  .home-about{
    background-size: 100% 100%, 100vw 240px;
  }

  .home-about-fish{
    --fish-h: 100px;
    --fish-gap: 400px;
    --fish-rise: 16px;
    min-height: calc((var(--fish-h) * var(--fish-lg-scale)) + var(--fish-rise) + 56px);
    padding-top: calc(var(--fish-rise) + 22px);
  }
}

@media (max-width: 680px){
  .home-about{
    background-size: 100% 100%, 100vw 180px;
  }

  .home-about-fish-wrap{
    margin-top: 0;
  }

  .home-about-fish{
    --fish-h: 80px;
    --fish-gap: 250px;
    --fish-rise: 12px;
    min-height: calc((var(--fish-h) * var(--fish-lg-scale)) + var(--fish-rise) + 44px);
    padding-top: calc(var(--fish-rise) + 16px);
    padding-bottom: 10px;
  }

  .home-about-fish__track{
    animation-duration: 58s;
  }

  .home-about-fish__image{
    animation-duration: 8.5s;
  }
}

@media (prefers-reduced-motion: reduce){
  .about-fish-track,
  .home-about-fish__image{
    animation: none;
  }
}

/* ======================================================================
   08B. HOMEPAGE, DEVELOPMENT / RESPONSIBLE SOURCING
   ====================================================================== */

.sourcing-vision{
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  padding: 84px 0;
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.88) 14%,
      rgba(0,0,0,0.62) 30%,
      rgba(0,0,0,0.28) 48%,
      rgba(0,0,0,0.00) 68%
    ),
    url('/new/assets/img/design/Amazonian_Reserve_Sunset.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.sourcing-vision::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 760px at 50% 35%, rgba(0,0,0,0.14), rgba(0,0,0,0.58)),
    linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.52));
}

.sourcing-vision-inner{
  position: relative;
  z-index: 1;
}

.sourcing-vision-copy{
  max-width: 1000px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.sourcing-vision-kicker{
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.72);
}

.sourcing-vision-title{
  margin: 0 0 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.08;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.sourcing-vision-lead{
  margin: 0 auto 14px auto;
  max-width: 920px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.84);
  text-shadow: 0 14px 36px rgba(0,0,0,0.52);
}

.sourcing-vision-text{
  margin: 0 auto;
  max-width: 860px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(242,242,242,0.72);
  text-shadow: 0 14px 36px rgba(0,0,0,0.52);
}

.sourcing-vision-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px auto 40px auto;
  max-width: 100%;
}

.sourcing-vision-logo img{
  display: block;
  width: min(420px, 62vw);
  max-width: 420px;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.30));
}

.sourcing-vision-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}



.sourcing-vision-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.sourcing-vision-panel{
  padding: 24px 24px 22px 24px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(10,10,10,0.34);
  backdrop-filter: blur(4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.sourcing-vision-panel-title{
  margin: 0 0 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: rgba(255,255,255,0.94);
}

.sourcing-vision-brand-showcase{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sourcing-vision-brand-title{
  margin: 0 0 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.92);
}

.sourcing-vision-brand-grid{
  width: 100%;
  display: flex;
  justify-content: center;
}

.sourcing-vision-brand-card{
  display: flex;
  justify-content: center;
}

.sourcing-vision-logo{
  display: flex;
  justify-content: center;
  align-items: center;
}

.sourcing-vision-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sourcing-vision-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sourcing-vision-list li:last-child{
  border-bottom: none;
}

.sourcing-vision-item-name{
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.84);
}

.sourcing-vision-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(183,155,58,0.18);
  border: 1px solid rgba(183,155,58,0.42);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sourcing-vision-badge--soft{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.sourcing-vision-badge--ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.18);
}

.sourcing-vision-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 980px){
  .sourcing-vision{
    min-height: 560px;
    padding: 72px 0;
  }

  .sourcing-vision-grid{
    grid-template-columns: 1fr;
  }

  .sourcing-vision-title{
    font-size: clamp(28px, 6vw, 40px);
  }

  .sourcing-vision-lead{
    font-size: 16px;
  }
}

@media (max-width: 680px){
   .sourcing-vision-logo{
    margin: 30px auto 24px auto;
  }

  .sourcing-vision-logo img{
    width: min(300px, 70vw);
    max-width: 300px;
  }
    
  .sourcing-vision{
    min-height: 520px;
    padding: 58px 0;
  }

  .sourcing-vision-copy{
    margin-bottom: 22px;
  }

  .sourcing-vision-panel{
    padding: 20px 18px;
  }

  .sourcing-vision-list li{
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ======================================================================
   07B. LAZY BACKGROUND STATE
   Used by app.js for background image fade in
   ====================================================================== */

.lazy-bg{
  background-image: none;
  background-color: rgba(255,255,255,0.04);
  transition: opacity 0.25s ease;
}

.lazy-bg:not(.is-loaded){
  opacity: 0.92;
}

.lazy-bg.is-loaded{
  opacity: 1;
  background-color: transparent;
}

/*.lazy-bg.is-lazy-error{
  outline: 1px dashed rgba(183,155,58,0.45);
}*/

/* ======================================================================
   08. HOMEPAGE, EDITORIAL
   ====================================================================== */

.lazy-bg{
  background-image: none;
  background-color: rgba(255,255,255,0.04);
  transition: opacity 0.25s ease;
}

.lazy-bg:not(.is-loaded){
  opacity: 0.92;
}

.lazy-bg.is-loaded{
  opacity: 1;
  background-color: transparent;
}

/* Editorial quote with full width background image, no clipping */
.editorial-quote{
  position: relative;
  width: 100%;
  padding-top: 200px;

  /* Keep cinematic baseline, but allow growth */
  min-height: 520px;
  padding: 100px 0 100px 0;

  /* IMPORTANT: remove fixed height constraints */
  height: auto;
  max-height: none;

  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* IMPORTANT: do not clip text */
  overflow: visible;
}

/* Overlay for readability, tuned so the image remains visible */
.editorial-quote::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 680px at 50% 45%, rgba(0,0,0,0.18), rgba(0,0,0,0.52)),
    linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.38));
}

.editorial-quote-inner{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  
  padding-top: 10px;
  padding-bottom: 10px;
    
}

/* Make the quote area wide like your other sections */
.eq-quote{
  margin: 0;
  width: 100%;
  text-align: center;
}

/* Large text, wide block, still readable */
.eq-quote p{
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 clamp(16px, 2vw, 28px);

  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(18px, 2.0vw, 34px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

/* Quotation marks */
.eq-quote p::before,
.eq-quote p::after{
  color: var(--gold-2);
  /*color: rgba(255,255,255,0.35);*/
  font-size: 1.5em;
}

.eq-quote p::before{
  content: "“";
  margin-right: 10px;
}

.eq-quote p::after{
  content: "”";
  margin-left: 10px;
}

/* Attribution */
.eq-meta{
  margin-top: 34px; /* was 18px, increase as needed */
  padding-top: 6px; /* optional, adds breathing room */
  text-align: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.92);
  text-shadow: 0 12px 28px rgba(0,0,0,0.55);
}

.eq-sep{
  padding: 0 10px;
  color: rgba(255,255,255,0.42);
}


/* Signed footer variant */
.eq-meta--signed{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Brand plus title stack */
.eq-sign{
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.eq-sign-brand{
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.95);
}

.eq-sign-title{
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

/* Optional signature PNG */
.eq-signature{
  height: 34px;
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,0.55));
}



/* Responsive */
@media (max-width: 980px){
  .editorial-quote{
    min-height: 460px;
    padding: 64px 0;
  }
  .eq-quote p{
    max-width: 100%;
    font-size: clamp(20px, 3.2vw, 30px);
    line-height: 1.55;
  }
}

@media (max-width: 680px){
  .editorial-quote{
    min-height: 420px;
    padding: 54px 0;
  }
  .eq-quote p{
    font-size: clamp(18px, 5.2vw, 26px);
  }
}

/* ======================================================================
   09. HOMEPAGE, SUPPORT CARDS GRID
   ====================================================================== */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.card-media{
  height: 180px;
  background-size: cover;
  background-position: center;
}

.card-title{
  margin: 16px 16px 8px 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 22px;
}

.card-text{
  margin: 0 16px 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.card-link{
  display:inline-block;
  margin: 0 16px 18px 16px;
  color: rgba(183,155,58,0.95);
  font-weight: 600;
  font-size: 14px;
}

.card-link:hover{
  color: rgba(183,155,58,1);
}

/* ======================================================================
   10. HOMEPAGE, TOPIC BANNER
   ====================================================================== */

.topic-banner{
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.topic-banner-inner{
  padding: 0;
}

.topic-banner .section-title{ 
    margin-top: 0; 
}

.section-title--banner{
  margin-bottom: 8px;
}

.section-lead--banner{
  margin: 0;
  color: rgba(242,242,242,0.78);
}


/* ======================================================================
   11. HOMEPAGE, FEATURED PRODUCT SHOWCASE
   ====================================================================== */

.featured-showcase{
  padding-top: 50px;
  padding-bottom: 50px;
}

.featured-showcase-header{
  margin: 0 0 18px 0;
}

.featured-showcase-card{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-showcase-media{
  position: relative;
  min-height: 420px;
  background: rgba(255,255,255,0.02);
}

.featured-showcase-media a{
  display: block;
  width: 100%;
  height: 100%;
}

.featured-showcase-media a img{
  transition: transform 400ms ease, opacity 400ms ease;
}

.featured-showcase-media a:hover img{
  transform: scale(1.03);
  opacity: 0.88;
}

.featured-showcase-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-showcase-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.featured-showcase-heading{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.featured-showcase-title-wrap{
  min-width: 0;
}

.featured-showcase-kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.66);
}

.featured-showcase-title{
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  color: var(--gold-2);
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
}

.featured-showcase-sub{
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-style: italic;
  color: rgba(242,242,242,0.82);
}

.featured-showcase-brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  min-width: 160px;
}

.featured-showcase-brand-logo{
  display: block;
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  height: auto;
  margin: 0 auto;
  flex: 0 0 auto;
}

.featured-showcase-brand-note{
  margin: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(183,155,58,0.96);
  transform: translateX(1.8rem);
}

.featured-showcase-text{
  margin: 0 0 14px 0;
  color: rgba(242,242,242,0.78);
  font-size: 15px;
  line-height: 1.8;
  max-width: none;
}

.featured-showcase-specs{
  margin-bottom: 22px;
}

.featured-showcase-specs--rows{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.featured-showcase-spec-row{
  display: grid;
  grid-template-columns: minmax(100px, 125px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.featured-showcase-spec-label{
  display: block;
  margin: 0;
  padding-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.58);
}

.featured-showcase-spec-value{
  display: block;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
}

.featured-showcase-spec-value--inline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-showcase-spec-value .product-flag,
.featured-showcase-spec-value--inline .product-flag{
  width: 18px;
  height: auto;
  margin: 0;
  flex: 0 0 auto;
}

.featured-showcase-flag{
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.featured-showcase-head,
.featured-showcase-meta,
.featured-showcase-origin{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-showcase-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-showcase-points{
  margin-top: 4px;
  margin-bottom: 22px;
}

@media (max-width: 980px){
  .featured-showcase-card{
    grid-template-columns: 1fr;
  }

  .featured-showcase-media{
    min-height: 320px;
  }

  .featured-showcase-points{
    grid-template-columns: 1fr;
  }

  .featured-showcase-heading{
    gap: 18px;
  }

  .featured-showcase-brand-logo{
    width: min(130px, 20vw);
    max-width: 130px;
  }

    .featured-showcase-spec-row{
      grid-template-columns: 125px 1fr;
      gap: 14px;
    }
}

@media (max-width: 680px){
  .featured-showcase{
    padding-top: 40px;
  }

  .featured-showcase-body{
    padding: 22px 18px;
  }

  .featured-showcase-media{
    min-height: 260px;
  }

  .featured-showcase-heading{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .featured-showcase-brand{
    justify-content: flex-start;
    align-items: flex-start;
    margin: 6px 0 0 0;
    padding-top: 0;
  }

  .featured-showcase-brand-logo{
    width: 130px;
    min-width: 130px;
    max-width: 130px;
  }

  .featured-showcase-text{
    font-size: 15px;
    line-height: 1.72;
  }

  .featured-showcase-spec-row{
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }

  .featured-showcase-spec-label{
    margin-bottom: 2px;
  }

  .featured-showcase-spec-value{
    font-size: 15px;
    line-height: 1.45;
  }
}
/* ======================================================================
   12. HOMEPAGE, PRODUCT GRID
   ====================================================================== */

.product-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
  margin-bottom: 100px;
}

.product-card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Product image: keep premium full bleed, but preserve faces better */
.product-media-link{
  display: block;
  overflow: hidden;
}

.product-media-link .product-media{
  transition: transform 400ms ease, opacity 400ms ease;
}

.product-media-link:hover .product-media{
  transform: scale(1.04);
  opacity: 0.85;
}

.product-media{
  /* Replace fixed height with responsive height */
  height: clamp(220px, 22vw, 340px);

  background-size: cover;

  /* default focal point: top-center (keeps heads) */
  background-position: var(--media-pos, 50% 20%);
  background-repeat: no-repeat;
}


.product-body{
  padding: 16px 16px 18px 16px;
  display: flex;
  flex-direction: column;
}

.product-title{
  margin: 0 0 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  text-align: left;
  color: #d4b54a;
  text-shadow: 0 1px 8px rgba(0,0,0,0.30);
}

.product-sub{
  font-size: 14px;
  color: rgba(242,242,242,0.82);
  font-weight: 500;
  font-style: italic;
}

.product-text{
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;

  line-height: 1.55;

  /* choose the number of lines you want visible */
  --lines: 4;

  /* fixed height = line-height * lines */
  height: calc(1.55em * var(--lines));
  overflow: hidden;

  /* optional: clean truncation */
  display: -webkit-box;
  -webkit-line-clamp: var(--lines);
  -webkit-box-orient: vertical;
}

.product-actions{
  display: flex;
  margin-top: 12px;
  gap: 10px;
  flex-wrap: wrap;    
  justify-content: center; /* centers all actions */
  align-items: center;
}

/* Product link, same look as value-strip-link but centered and card-friendly */
.product-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 10px;
  margin-bottom: 16px;

  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  color: rgba(183,155,58,0.95);
  text-decoration: none;
}

.product-link::after{
  content: "›";
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}

.product-link:hover{
  color: rgba(183,155,58,1);
}

.badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.92);
  border: 1px solid rgba(183,155,58,0.45);
  background: rgba(183,155,58,0.12);
  margin-bottom: 10px;
}

/* Product origin row */
.product-origin{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 6px 0 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.10);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.product-flag{
  width: 30px;
  height: 20px;
  border-radius: 2px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

.product-origin-label{
  color: rgba(242,242,242,0.72);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.product-origin-value{
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(255,255,255,0.96);
  font-weight: 500;
  font-size: 14px;
font-style: italic;
  letter-spacing: 0.01em;
}

.product-meta{
  display:grid;
  gap:.45rem;
  margin:.85rem 0 1rem;
  padding-top:.2rem;
}

.product-meta-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  font-size:.82rem;
  line-height:1.35;
}

.product-meta-label{
  flex:0 0 auto;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.72rem;
}

.product-meta-value{
  text-align:right;
  color:rgba(255,255,255,.9);
}



/* Responsive product grid */

/* Medium: 4 per row */
@media (max-width: 1400px){
  .product-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .product-media{
    height: clamp(240px, 34vw, 220px);
  }
}

/* Smaller: 3 per row */
@media (max-width: 1200px){
  .product-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-media{
    height: clamp(240px, 34vw, 220px);
  }
}

/* Smaller: 2 per row */
@media (max-width: 800px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-media{
    height: clamp(240px, 34vw, 240px);
  }
}

/* Smaller: 1 per row */
@media (max-width: 680px){
  .product-grid{
    grid-template-columns: 1fr;
  }
  .product-media{
    height: clamp(160px, 56vw, 220px);
  }
}


/* ======================================================================
   13. HOMEPAGE, LATEST POSTS
   ====================================================================== */
.posts-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.post-card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.post-media{
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.post-body{
  padding: 14px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.post-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.post-date{
  color: rgba(242,242,242,0.70);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.post-tag{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.90);
  border: 1px solid rgba(183,155,58,0.35);
  background: rgba(183,155,58,0.10);
  padding: 6px 10px;
  border-radius: 999px;
}

.post-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
}

.post-title a{
  color: rgba(255,255,255,0.95);
}

.post-text{
  margin: 0;
  color: rgba(242,242,242,0.72);
  font-size: 13px;
  line-height: 1.55;
}

.post-link{
  margin-top: auto;
  color: rgba(183,155,58,0.95);
  font-weight: 700;
  font-size: 13px;
}

.post-link:hover{
  color: rgba(183,155,58,1);
}

@media (max-width: 1200px){
  .posts-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px){
  .posts-grid{
    grid-template-columns: 1fr;
  }
  .post-media{
    height: 200px;
  }
}

/* ======================================================================
   14. HOMEPAGE, CONTACT
   ====================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.contact-panel{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.contact-title{
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 22px;
}

.contact-text{
  margin: 0 0 18px 0;
  color: rgba(242,242,242,0.72);
  line-height: 1.6;
  font-size: 14px;
  max-width: 72ch;
}

.contact-points{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contact-point{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}

.contact-point-title{
  color: rgba(242,242,242,0.70);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-point-text{
  color: rgba(255,255,255,0.92);
  font-size: 14px;
}

/* Contact form wrap */
.contact-form-wrap{
  background: rgba(0,0,0,0.16);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

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

.field-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label{
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
}

.field-input{
  height: 46px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
  line-height: 1.2;
  color: rgba(255,255,255,0.92);
}

.field-input::placeholder{
  color: rgba(255,255,255,0.45);
}

.field-input:hover{
  border-color: rgba(255,255,255,0.22);
}


.field-input:focus{
  border-color: rgba(183,155,58,0.70);
  box-shadow: 0 0 0 4px rgba(183,155,58,0.14);
  background: rgba(255,255,255,0.04);
}

.field-textarea{
  height: auto;
  min-height: 160px;
  padding: 14px;
  line-height: 1.55;
}

select.field-input{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.65) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.65) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.field-hint{
  margin-top: 2px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
}

.form-actions{
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  justify-content: flex-start;
  gap: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form-note{
  max-width: 44ch;
}

.contact-form .btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
}

/* Alerts */
.form-alert{
  border-radius: 16px;
}

.form-alert-title{
  font-weight: 700;
}

.hp{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert{
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.10);
}

.form-alert--ok{
  background: rgba(60, 120, 70, 0.18);
  border-color: rgba(100, 180, 110, 0.35);
  color: rgba(230,255,235,0.95);
}

.form-alert--err{
  background: rgba(120, 45, 45, 0.20);
  border-color: rgba(210, 90, 90, 0.35);
  color: rgba(255,235,235,0.95);
}

.form-alert-title{
  font-weight: 700;
  margin-bottom: 8px;
}

.form-alert-list{
  margin: 0;
  padding-left: 18px;
}

/* Responsive */
@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px){
  .field-row{
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   15. HOMEPAGE, RECIPES
   ====================================================================== */
.recipes-feature{
  margin-top: 18px;
}

.recipe-feature-card{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.recipe-feature-media{
  min-height: 320px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.recipe-feature-body{
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recipe-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.recipe-badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.92);
  border: 1px solid rgba(183,155,58,0.45);
  background: rgba(183,155,58,0.12);
}

.recipe-meta-item{
  color: rgba(242,242,242,0.72);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.recipe-feature-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
}

.recipe-feature-text{
  margin: 0;
  color: rgba(242,242,242,0.74);
  font-size: 14px;
  line-height: 1.65;
  max-width: 70ch;
}

.recipe-feature-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Recipes horizontal strip */
.recipes-strip{
  margin-top: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.recipes-strip::-webkit-scrollbar{
  height: 10px;
}

.recipes-strip::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

.recipes-strip::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
}

.recipe-story{
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.recipe-story-media{
  display: block;
  height: 170px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
}

.recipe-story-body{
  padding: 14px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recipe-story-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.recipe-pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.90);
  border: 1px solid rgba(183,155,58,0.30);
  background: rgba(183,155,58,0.10);
}

.recipe-pill--soon{
  border-color: rgba(242,242,242,0.18);
  background: rgba(255,255,255,0.06);
}

.recipe-time{
  color: rgba(242,242,242,0.66);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.recipe-story-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}

.recipe-story-text{
  margin: 0;
  color: rgba(242,242,242,0.70);
  font-size: 13px;
  line-height: 1.55;
}

/* Recipes 2×3 grid (product pages) */
.recipes-grid{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recipes-grid .recipe-story-media{
  height: 200px;
}
@media (max-width: 860px){
  .recipes-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .recipes-grid{ grid-template-columns: 1fr; }
}

.recipes-note{
  margin-top: 14px;
  color: rgba(242,242,242,0.62);
  font-size: 13px;
}

.recipes-note a{
  color: rgba(183,155,58,0.95);
  font-weight: 700;
}

.recipes-note a:hover{
  color: rgba(183,155,58,1);
}

@media (max-width: 980px){
  .recipe-feature-card{
    grid-template-columns: 1fr;
  }
  .recipe-feature-media{
    min-height: 260px;
  }
}

/* ======================================================================
   16. HOMEPAGE, TRADITION BANNER
   ====================================================================== */

.tradition-banner{
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.tradition-banner-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 22% 45%, rgba(0,0,0,0.10), rgba(0,0,0,0.38)),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.0));
}

.tradition-banner-inner{
  position: relative;
  padding: 34px 28px;
  max-width: 72ch;
  background: rgba(0,0,0,0.0);
  border-radius: 16px;
  margin: 22px;
  backdrop-filter: blur(2px);
}

.tradition-banner-title{
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.12;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

.tradition-banner-text{
  margin: 0 0 16px 0;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.65;
  text-shadow: 0 10px 28px rgba(0,0,0,0.55);
}

.tradition-banner-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  height: 44px;
  padding: 0 16px;
  font-weight: 700;
  border: 1px solid rgba(183,155,58,0.62);
  background: rgba(183,155,58,0.18);
  color: rgba(255,255,255,0.96);
  transition: background 140ms ease, border-color 140ms ease, transform 120ms ease;
}

.tradition-banner:hover .tradition-banner-cta{
  background: rgba(183,155,58,0.24);
  border-color: rgba(183,155,58,0.78);
}

.tradition-banner-cta:active{
  transform: translateY(1px);
}

@media (max-width: 680px){
  .tradition-banner{
    min-height: 240px;
  }
  .tradition-banner-inner{
    padding: 26px 18px;
    margin: 14px;
  }
}

/* ======================================================================
   17. HOMEPAGE, TRADITION HERO
   ====================================================================== */

.tradition-hero{
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 62vh;
  max-height: 820px;
  padding-top: 70px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Entire section is clickable via anchor */
.tradition-hero-link{
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Overlay tuned so picture stays visible but text remains readable */
.tradition-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 680px at 50% 45%, rgba(0,0,0,0.12), rgba(0,0,0,0.46)),
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.28));
}

/* Center content vertically and horizontally */
.tradition-hero-inner{
  position: relative;
  height: 100%;
  display: flex;

  /* horizontal centering */
  justify-content: center;
  text-align: center;

  /* move content higher: place it at 33% down from the top */
  align-items: flex-start;
  padding-top: 10vh;
}


/* Centered block, wider like your sections */
.tradition-hero-content{
  width: 100%;
  max-width: 80ch; /* increase if you want wider */
  padding: 0 clamp(16px, 2vw, 28px);
  margin: 0 auto;
}

/* Typography */
.tradition-hero-title{
  margin: 0 0 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.10;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

.tradition-hero-text{
  margin: 0 auto 18px auto;
  max-width: 70ch;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.84);
  text-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

/* CTA pill */
.tradition-hero-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;

  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;

  border: 1px solid rgba(183,155,58,0.70);
  background: rgba(183,155,58,0.18);
  color: rgba(255,255,255,0.94);

  box-shadow: 0 18px 45px rgba(0,0,0,0.40);
  transition: background 140ms ease, border-color 140ms ease, transform 120ms ease;
}

.tradition-hero-link:hover .tradition-hero-cta{
  background: rgba(183,155,58,0.24);
  border-color: rgba(183,155,58,0.90);
}

.tradition-hero-link:active .tradition-hero-cta{
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px){
  .tradition-hero{
    height: 56vh;
    min-height: 460px;
  }
  .tradition-hero-content{
    max-width: 72ch;
  }
}

@media (max-width: 680px){
  .tradition-hero{
    height: auto;
    min-height: 420px;
  }
  .tradition-hero-inner{
    padding: 56px 0;
    align-items: center; /* keep centered on mobile too */
  }
  .tradition-hero-content{
    max-width: 100%;
  }
}

/* ======================================================================
   18. PLACEHOLDERS
   ====================================================================== */

.placeholder{
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 14px;
  color: rgba(242,242,242,0.60);
  background: transparent;
}

/* ======================================================================
   19. FOOTER
   ====================================================================== */


.footer{
  position: relative;
  margin-top: 64px;
  padding: 42px 0 22px 0;
  background: rgba(0,0,0,0.35);
}

.footer::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(183,155,58,0.00),
    rgba(183,155,58,0.55),
    rgba(255,255,255,0.18),
    rgba(183,155,58,0.55),
    rgba(183,155,58,0.00)
  );
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.footer-logo img{
  height: 54px;
  width: auto;
  display: block;
}

.footer-tagline{
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.6;
  max-width: 44ch;
}

.footer-title{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}

.footer-link{
  display: block;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  padding: 6px 0;
}

.footer-link:hover{
  color: rgba(183,155,58,0.95);
}

.footer-link--sub{
  padding-left: 14px;
  font-size: 0.96em;
  color: rgba(242,242,242,0.70);
}

.footer-address{
  margin-bottom: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.55;
}

.footer-address-title{
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-legal{
  margin-top: 14px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.55;
}

/* Optional footer bottom elements, keep if used in footer.php */
.footer-bottom{
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-left{
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}

.footer-mini{
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}

.footer-mini:hover{
  color: rgba(183,155,58,0.95);
}

.footer-sep{
  color: rgba(255,255,255,0.35);
  padding: 0 8px;
}

/* Footer responsive */
@media (max-width: 1100px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-logo img{
    height: 100px;
  }
}

/* ======================================================================
   20. RESPONSIVE, GLOBAL ADJUSTMENTS
   ====================================================================== */

@media (max-width: 980px){
  .header-inner{
    grid-template-columns: 200px 1fr 160px;
  }
  .nav{
    gap: 14px;
    font-size: 13px;
  }
  .cards{
    grid-template-columns: 1fr;
  }
  .card-media{
    height: 200px;
  }
}

@media (max-width: 680px){
  .header-inner{
    grid-template-columns: 160px 1fr;
  }
  .nav{
    display:none;
  }
  .header-cta{
    justify-content: flex-end;
  }
}

/* ======================================================================
   21. ABOUT PAGE
   Full replacement for the About page only
   ====================================================================== */

.section-eyebrow{
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.92);
}

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

.about-page{
  background:
    radial-gradient(circle at top, rgba(183,155,58,0.08), transparent 26%),
    #0b0b0b;
}

/* ----------------------------------------------------------------------
   About hero
   ---------------------------------------------------------------------- */

.about-hero{
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  width: 100%;
  height: clamp(500px, 62vh, 640px);
  min-height: 500px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #111;
}

.about-hero__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.about-hero__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #111;
}

.about-hero__inner{
  position: absolute;
  left: clamp(28px, 4.2vw, 88px);
  right: auto;
  bottom: 20px;
  top: auto;
  z-index: 2;

  width: min(860px, calc(100vw - 72px));
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;

  display: block;
  text-align: left;
}

.about-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
    radial-gradient(circle at 20% 20%, rgba(183,155,58,0.10), transparent 28%);
}

.about-hero__kicker{
  margin: 0 0 12px 0;
  color: rgba(183,155,58,0.92);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  text-align: left;
}

.about-hero__title{
  margin: 0;
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  font-size: clamp(42px, 4.2vw, 56px);
  text-align: left;
}

.about-hero__lead{
  margin: 14px 0 0 0;
  max-width: 760px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.72;
  color: rgba(242,242,242,0.82);
  text-align: left;
}

.about-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-start;
}

/* ----------------------------------------------------------------------
   Shared layout
   ---------------------------------------------------------------------- */

.about-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.about-grid--intro{
  align-items: center;
}

.about-grid--stretch{
  align-items: stretch;
}

.about-grid--stretch .about-visual--tall{
  display: flex;
  flex-direction: column;
}

.about-grid--stretch .about-visual--tall .about-visual__image{
  flex: 1;
  min-height: 0;
  height: 100%;
}

.about-grid--clients{
  align-items: center;
}

.about-copy{
  min-width: 0;
}

.about-copy__lead{
  color: rgba(242,242,242,0.86);
  font-size: 18px;
  line-height: 1.8;
}

.about-copy p{
  margin: 0 0 18px 0;
  color: rgba(242,242,242,0.74);
  line-height: 1.9;
}

.about-center-title{
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* ----------------------------------------------------------------------
   About visuals, base wrappers only
   Do not group image sizing here
   ---------------------------------------------------------------------- */

.about-visual{
  min-width: 0;
}

.about-visual--card,
.about-visual--tall{
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.34);
}

.about-visual__image{
  position: relative;
  background-color: #141414;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ----------------------------------------------------------------------
   Separate image sizing by section / visual type
   ---------------------------------------------------------------------- */

/* Story image */
.about-story .about-visual--card .about-visual__image{
  min-height: clamp(320px, 34vw, 380px);
  background-position: center center;
}

.about-story .about-visual--tall .about-visual__image{
  min-height: 200px;
  background-position: center center;
}

/* Experience image */
.about-experience .about-visual--tall .about-visual__image{
  min-height: clamp(460px, 48vw, 630px);
  background-position: center center;
}

/* Process image */
.about-visual--process .about-visual__image{
  min-height: clamp(420px, 42vw, 520px);
  background-position: center center;
}

/* Clients / chef image */
.about-visual--chef .about-visual__image{
  min-height: clamp(320px, 44vw, 530px);
  background-position: center center;
}

/* ----------------------------------------------------------------------
   Hover overlay captions
   ---------------------------------------------------------------------- */

.about-visual--card::after,
.about-visual--tall::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0);
  transition: background 220ms ease;
  pointer-events: none;
}

.about-visual__caption{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;

  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);

  background: rgba(0,0,0,0.44);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.985);

  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.about-visual--card:hover::after,
.about-visual--card:focus-within::after,
.about-visual--tall:hover::after,
.about-visual--tall:focus-within::after{
  background: rgba(0,0,0,0.16);
}

.about-visual--card:hover .about-visual__caption,
.about-visual--card:focus-within .about-visual__caption,
.about-visual--tall:hover .about-visual__caption,
.about-visual--tall:focus-within .about-visual__caption{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.about-visual__caption{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;

  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);

  background: rgba(0,0,0,0.44);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(10px) scale(0.985);

  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.about-caption-meta{
  display: block;
  margin-top: 10px;

  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.85);
}

/* ----------------------------------------------------------------------
   Services
   ---------------------------------------------------------------------- */

.about-service-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-service-card{
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
}

.about-service-card h3{
  margin: 0 0 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 24px;
}

.about-service-card p{
  margin: 0;
  color: rgba(242,242,242,0.72);
  line-height: 1.8;
}

/* ----------------------------------------------------------------------
   Checklists
   ---------------------------------------------------------------------- */

.about-checklist{
  list-style: none;
  padding: 0;
  margin: 28px 0 0 0;
  display: grid;
  gap: 12px;
}

.about-checklist li{
  position: relative;
  padding-left: 28px;
  color: rgba(242,242,242,0.84);
}

.about-checklist li::before{
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(183,155,58,0.95), rgba(139,122,43,0.95));
  box-shadow: 0 0 0 4px rgba(183,155,58,0.12);
}

/* ----------------------------------------------------------------------
   Band / market focus
   ---------------------------------------------------------------------- */

.about-band{
  position: relative;
  padding: clamp(34px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02)),
    radial-gradient(circle at top right, rgba(183,155,58,0.12), transparent 28%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
}

.about-band__content{
  max-width: 920px;
}

.about-band p{
  margin: 0 0 16px 0;
  line-height: 1.9;
  color: rgba(242,242,242,0.75);
}

.about-market-focus{
  position: relative;
  padding-left: clamp(10px, 4vw, 40px);
  padding-right: clamp(10px, 4vw, 40px);
}

.about-market-focus::before{
  content: none;
}

.about-market-focus .about-band__content{
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------------------------
   Clients section copy width
   ---------------------------------------------------------------------- */

.about-clients .about-copy{
  max-width: 760px;
}

.about-clients .about-copy p,
.about-clients .about-copy__lead{
  max-width: 720px;
}

/* ----------------------------------------------------------------------
   CTA
   ---------------------------------------------------------------------- */

.about-cta{
  padding-left: clamp(8px, 4vw, 38px);
  padding-right: clamp(8px, 4vw, 38px);
}

.about-cta__box{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at left center, rgba(183,155,58,0.12), transparent 26%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.26);
  margin-bottom: 90px;
}

.about-cta__content p{
  margin: 0 0 12px 0;
  color: rgba(242,242,242,0.74);
  line-height: 1.85;
}

.about-cta__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ----------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */

@media (max-width: 1100px){
  .about-service-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-page .about-story .about-visual--card .about-visual__image,
  .about-page .about-story .about-visual--tall .about-visual__image{
    min-height: clamp(320px, 48vw, 420px);
  }

  .about-page .about-experience .about-visual--tall .about-visual__image{
    min-height: clamp(420px, 62vw, 550px);
  }

  .about-page .about-visual--process .about-visual__image{
    min-height: clamp(420px, 64vw, 580px);
  }

  .about-page .about-visual--chef .about-visual__image{
    min-height: clamp(320px, 62vw, 480px);
  }

  .about-page .about-cta__box{
    grid-template-columns: 1fr;
  }

  .about-cta__actions{
    justify-content: flex-start;
  }
}

@media (max-width: 900px){
  .about-grid--clients{
    grid-template-columns: 1fr;
  }

  .about-market-focus{
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-visual__caption{
    left: 28px;
    right: 28px;
    bottom: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(0,0,0,0.50);
  }

  .about-visual--card::after,
  .about-visual--tall::after{
    background: rgba(0,0,0,0.14);
  }

  .about-visual--card:hover .about-visual__caption,
  .about-visual--card:focus-within .about-visual__caption,
  .about-visual--tall:hover .about-visual__caption,
  .about-visual--tall:focus-within .about-visual__caption{
    transform: none;
  }

  .about-visual--process .about-visual__image{
    min-height: clamp(320px, 70vw, 480px);
  }

  .about-visual--chef .about-visual__image{
    min-height: clamp(300px, 72vw, 480px);
  }
}

@media (max-width: 720px){
  .about-page .about-service-grid{
    grid-template-columns: 1fr;
  }

  .about-page .about-hero{
    min-height: 520px;
    height: auto;
  }

  .about-page .about-hero__inner{
    left: 22px;
    bottom: 18px;
    width: calc(100vw - 44px);
  }

  .about-page .about-hero__title{
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.04;
  }

  .about-page .about-hero__lead{
    font-size: 14px;
    line-height: 1.72;
    margin-top: 12px;
  }

  .about-page .about-copy__lead{
    font-size: 16px;
  }

  .about-story .about-visual--card .about-visual__image,
  .about-story .about-visual--tall .about-visual__image{
    min-height: 280px;
  }

  .about-experience .about-visual--tall .about-visual__image{
    min-height: 300px;
  }

  .about-visual--process .about-visual__image{
    min-height: 320px;
  }

  .about-visual--chef .about-visual__image{
    min-height: 280px;
  }

  .about-cta__box{
    padding: 24px 20px;
  }
}

/* ----------------------------------------------------------------------
   About page, smartphone only
   Scoped to dedicated About page only
   ---------------------------------------------------------------------- */

@media (max-width: 430px){
  .about-page .about-hero{
    min-height: 560px;
    height: auto;
  }

  .about-page .about-hero__inner{
    left: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
  }

  .about-page .about-hero__kicker{
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .about-page .about-hero__title{
    max-width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.02;
  }

  .about-page .about-hero__lead{
    max-width: 100%;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.66;
  }

  .about-page .about-hero__actions{
    margin-top: 14px;
  }

  .about-page .section{
    padding-top: 54px;
  }

  .about-page .section-title{
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.16;
  }

  .about-page .about-grid{
    gap: 24px;
  }

  .about-page .about-copy__lead{
    font-size: 15px;
    line-height: 1.72;
  }

  .about-page .about-copy p{
    font-size: 14px;
    line-height: 1.78;
  }

  .about-page .about-story .about-visual--card .about-visual__image,
  .about-page .about-story .about-visual--tall .about-visual__image{
    min-height: 250px;
  }

  .about-page .about-experience .about-visual--tall .about-visual__image{
    min-height: 270px;
  }

  .about-page .about-visual--process .about-visual__image{
    min-height: 280px;
  }

  .about-page .about-visual--chef .about-visual__image{
    min-height: 250px;
  }

  .about-page .about-visual__caption{
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px 14px 14px;
    border-radius: 0 0 18px 18px;
    max-height: none;
    overflow: visible;
    background: rgba(10,10,10,0.94);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .about-page .about-visual--card::after,
  .about-page .about-visual--tall::after{
    display: none;
  }

  .about-page .about-service-grid{
    grid-template-columns: 1fr;
  }

  .about-page .about-service-card{
    padding: 20px 18px;
  }

  .about-page .about-service-card h3{
    font-size: 22px;
  }

  .about-page .about-band{
    padding: 22px 18px;
    border-radius: 18px;
  }

  .about-page .about-band p{
    font-size: 14px;
    line-height: 1.78;
  }

  .about-page .about-cta__box{
    padding: 22px 18px;
    gap: 18px;
    margin-bottom: 64px;
  }
}

@media (max-width: 393px){
  .about-page .container{
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-page .about-hero__title{
    font-size: clamp(26px, 7.8vw, 32px);
  }

  .about-page .about-hero__lead{
    font-size: 12.5px;
    line-height: 1.64;
  }

  .about-page .about-visual__caption{
    padding: 10px 11px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .about-page .about-caption-meta{
    font-size: 9.5px;
    letter-spacing: 0.09em;
  }
}

/* ===============================
   ABOUT MARKET FOCUS BACKGROUND
================================= */

.about-market-focus {
  position: relative;
}

.about-market-focus::before {
  content: none;
}

.about-market-focus .about-band__content {
  position: relative;
  z-index: 2;
}

/* ===============================
   ABOUT MARKET FOCUS SPACING FIX
================================= */

.about-market-focus {
  padding-left: clamp(10px, 4vw, 40px);
  padding-right: clamp(10px, 4vw, 40px);
}

@media (max-width: 768px) {
  .about-market-focus {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ----------------------------------------------------------------------
   About page, chef portrait row below Who we serve
   ---------------------------------------------------------------------- */

.about-chef-row{
  padding-top: 26px;
  padding-bottom: 10px;
}

.about-chef-row__intro{
  max-width: 860px;
  margin: 0 0 28px 0;
}

.about-chef-cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  align-items: start;
}

.about-visual--chef-card{
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
}

.about-visual--chef-card .about-visual__image{
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  flex-shrink: 0;
  background-position: center 25%;
  background-size: cover;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}

.about-visual--chef-card .about-visual__caption{
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.62;
  flex: 1;
}

.about-visual--chef-card .about-caption-meta{
  display: block;
  margin-top: 10px;
}

.about-chef-intro{
  max-width: 9000px;
  margin: 0 0 32px 0;
}

.about-chef-event{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-chef-event__image{
  height: 260px;
  min-height: 260px;
  background-size: cover;
  background-position: center 25%;
  background-color: #141414;
  border-radius: 6px;
}

.about-chef-event__name{
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px 0;
  letter-spacing: 0.01em;
}

.about-chef-event__text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-chef-event__text p{
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

@media (max-width: 700px){
  .about-chef-event{
    grid-template-columns: 1fr;
  }

  .about-chef-event__image{
    height: 220px;
    min-height: 220px;
  }
}

.about-chef-row{
  margin-top: 60px;
}

@media (max-width: 1100px){
  .about-chef-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .about-chef-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-chef-row{
    padding-top: 18px;
  }

  .about-visual--chef-card .about-visual__image{
    height: 160px;
    min-height: 160px;
    max-height: 160px;
  }

  .about-visual--chef-card .about-visual__caption{
    font-size: 11px;
    padding: 10px 12px;
  }
}

@media (max-width: 400px){
  .about-chef-cards{
    grid-template-columns: 1fr;
  }
}








/* ======================================================================
   21. LEGAL PAGES
   ====================================================================== */

.legal-page--narrow .container{
  width: min(100%, 980px);
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.legal-hero{
  padding-top: 42px;
  padding-bottom: 18px;
}

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

.legal-kicker{
  margin-bottom: 12px;
  color: rgba(183,155,58,0.92);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.06;
}

.legal-intro{
  width: min(100%, 760px);
  margin: 18px auto 0 auto;
  color: rgba(242,242,242,0.76);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
}

.legal-content{
  padding-top: 20px;
  padding-bottom: 64px;
}

.legal-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  padding: clamp(26px, 4vw, 48px);
}

.legal-card h2{
  margin: 34px 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  color: rgba(255,255,255,0.96);
}

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

.legal-card p{
  margin: 0 0 16px 0;
  color: rgba(242,242,242,0.82);
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 767px){
  .legal-hero{
    padding-top: 26px;
  }

  .legal-content{
    padding-top: 12px;
    padding-bottom: 46px;
  }

  .legal-card{
    border-radius: 18px;
    padding: 22px 18px;
  }

  .legal-card p{
    font-size: 15px;
    line-height: 1.8;
  }
}


/* ======================================================================
   22. LEGAL PAGE CONTACT BLOCK
   ====================================================================== */

.legal-contact-block{
  margin-top: 42px;
  padding-top: 10px;
}

.legal-contact-divider{
  width: 100%;
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(183,155,58,0.55) 18%,
    rgba(183,155,58,0.55) 82%,
    rgba(255,255,255,0.00) 100%
  );
}

.legal-contact-head{
  text-align: center;
}

.legal-contact-kicker{
  margin-bottom: 10px;
  color: rgba(183,155,58,0.92);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-contact-title{
  margin: 0 0 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  color: rgba(255,255,255,0.96);
}

.legal-contact-text{
  width: min(100%, 720px);
  margin: 0 auto;
  color: rgba(242,242,242,0.78);
  font-size: 16px;
  line-height: 1.9;
}

.legal-contact-form{
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.legal-contact-btn{
  min-width: 220px;
  min-height: 50px;
}

.legal-contact-note{
  margin-top: 16px;
  text-align: center;
  color: rgba(242,242,242,0.68);
  font-size: 14px;
  line-height: 1.8;
}

.legal-contact-note a{
  color: rgba(183,155,58,0.96);
  text-decoration: none;
}

.legal-contact-note a:hover{
  color: rgba(255,255,255,0.96);
}

@media (max-width: 767px){
  .legal-contact-block{
    margin-top: 34px;
  }

  .legal-contact-title{
    font-size: 26px;
  }

  .legal-contact-text{
    font-size: 15px;
    line-height: 1.85;
  }

  .legal-contact-btn{
    width: 100%;
    min-width: 0;
  }

  .legal-contact-form{
    margin-top: 20px;
  }
}

/* ======================================================================
   23. PARTNERSHIP PAGE V2
   Full replacement for the Partnership page only
   ====================================================================== */

.partnership-page-v2{
  background:
    radial-gradient(circle at top center, rgba(183,155,58,0.08), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #0b0b0b 100%);
}

.partnership-kicker{
  margin: 0 0 16px 0;
  color: rgba(183,155,58,0.92);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ----------------------------------------------------------------------
   Partnership Page Hero Banner
   ---------------------------------------------------------------------- */

.partnership-page-hero{
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  width: 100%;
  height: clamp(500px, 62vh, 640px);
  min-height: 500px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #111;
}

.partnership-page-hero + section{
  margin-top: clamp(60px, 6vw, 100px);
  position: relative;
}

.partnership-page-hero + section::before{
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
}

.partnership-page-hero__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.partnership-page-hero__poster{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #111;
}

.partnership-page-hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #111;
}

.partnership-page-hero__inner{
  position: absolute;
  left: clamp(28px, 4.2vw, 88px);
  right: auto;
  bottom: 20px;
  top: auto;
  z-index: 2;

  width: min(860px, calc(100vw - 72px));
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;

  display: block;
  text-align: left;
}

.partnership-page-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
    radial-gradient(circle at 20% 20%, rgba(183,155,58,0.10), transparent 28%);
}

.partnership-page-hero__content{
  max-width: none;
}

.partnership-page-hero__kicker{
  margin: 0 0 12px 0;
  color: rgba(183,155,58,0.92);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  text-align: left;
}

.partnership-page-hero__title{
  margin: 0;
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  font-size: clamp(42px, 4.2vw, 56px);
  text-align: left;
}

.partnership-page-hero__lead{
  margin: 14px 0 0 0;
  max-width: 760px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.72;
  color: rgba(242,242,242,0.82);
  text-align: left;
}

.partnership-page-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-start;
}

/* ----------------------------------------------------------------------
   Value Strip
   ---------------------------------------------------------------------- */

.partnership-value-strip{
  padding: 0 0 34px;
}

.partnership-value-strip__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.partnership-value-strip__item{
  padding: 24px 22px 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 34px rgba(0,0,0,0.18);
}

.partnership-value-strip__item h2{
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.partnership-value-strip__item p{
  margin: 0;
  color: rgba(242,242,242,0.72);
  line-height: 1.8;
}

/* ----------------------------------------------------------------------
   Shared Heading
   ---------------------------------------------------------------------- */

.partnership-section-heading{
  max-width: 760px;
  margin: 0 0 34px;
}

.partnership-section-heading--center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.partnership-section-heading__lead{
  margin: 12px 0 0;
  color: rgba(242,242,242,0.72);
  line-height: 1.8;
}

/* ----------------------------------------------------------------------
   Method
   ---------------------------------------------------------------------- */

.partnership-method__timeline{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.partnership-method__step{
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 34px rgba(0,0,0,0.2);
}

.partnership-method__num{
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(183,155,58,0.96);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partnership-method__step h3{
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.partnership-method__step p{
  margin: 0;
  color: rgba(242,242,242,0.72);
  line-height: 1.8;
}

/* ----------------------------------------------------------------------
   Fit Compare
   ---------------------------------------------------------------------- */

.partnership-fit-compare__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.partnership-fit-card{
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
}

.partnership-fit-card--good{
  background:
    radial-gradient(circle at top right, rgba(183,155,58,0.12), transparent 28%),
    rgba(255,255,255,0.035);
}

.partnership-fit-card--neutral{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
}

.partnership-fit-list{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.partnership-fit-list li{
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
  color: rgba(242,242,242,0.76);
  line-height: 1.9;
}

.partnership-fit-list li + li{
  margin-top: 10px;
}

.partnership-fit-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(183,155,58,0.95);
}

/* ----------------------------------------------------------------------
   Case Studies
   ---------------------------------------------------------------------- */

.partnership-cases__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(32px, 4vw, 52px);
  align-items: start;
}

.partnership-case{
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

.partnership-case__image{
  flex-shrink: 0;
  height: clamp(200px, 24vw, 320px);
  background-size: cover;
  background-position: center center;
}

.partnership-case__body{
  padding: clamp(22px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.partnership-case__title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.32;
  color: #f2f2f2;
  margin: 0 0 16px;
}

.partnership-case__body p{
  color: rgba(242,242,242,0.72);
  line-height: 1.88;
  margin-bottom: 14px;
}

.partnership-case__body .btn{
  margin-top: 8px;
  align-self: flex-start;
}

/* ----------------------------------------------------------------------
   Field — how partnerships begin
   ---------------------------------------------------------------------- */

.partnership-field__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.partnership-field__copy p{
  color: rgba(242,242,242,0.74);
  line-height: 1.9;
  margin-bottom: 16px;
}

.partnership-field__visual{
  display: flex;
  flex-direction: column;
}

.partnership-field__image{
  flex: 1;
  min-height: 0;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

/* Local producers section */
.partnership-local__grid{
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 28px;
  row-gap: 0;
}

.partnership-local__eyebrow{
  grid-column: 2;
  grid-row: 1;
}

.partnership-local__visual{
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
}

.partnership-local__copy{
  grid-column: 2;
  grid-row: 2;
}

.partnership-local__image{
  flex: 1;
  min-height: 0;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.partnership-local__copy p{
  color: rgba(242,242,242,0.74);
  line-height: 1.9;
  margin-bottom: 16px;
}

@media (max-width: 1100px){
  .partnership-local__grid{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .partnership-local__eyebrow{
    grid-column: 1;
    grid-row: 1;
  }

  .partnership-local__visual{
    grid-column: 1;
    grid-row: 2;
  }

  .partnership-local__copy{
    grid-column: 1;
    grid-row: 3;
  }

  .partnership-local__image{
    min-height: 360px;
  }
}

/* ----------------------------------------------------------------------
   Gains
   ---------------------------------------------------------------------- */

.partnership-gains__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.partnership-gains__card{
  padding: 26px 24px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 34px rgba(0,0,0,0.2);
}

.partnership-gains__card h3{
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.partnership-gains__card p{
  margin: 0;
  color: rgba(242,242,242,0.72);
  line-height: 1.8;
}

/* ----------------------------------------------------------------------
   Final CTA
   ---------------------------------------------------------------------- */

.partnership-final-cta__box{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(183,155,58,0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 54px rgba(0,0,0,0.24);
}

.partnership-final-cta__content p:not(.section-eyebrow){
  color: rgba(242,242,242,0.74);
  line-height: 1.85;
}

.partnership-final-cta__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ----------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */

@media (max-width: 1100px){
  .partnership-fit-compare__grid,
  .partnership-final-cta__box,
  .partnership-gains__grid{
    grid-template-columns: 1fr;
  }

  .partnership-cases__grid{
    grid-template-columns: 1fr;
  }

  .partnership-field__grid{
    grid-template-columns: 1fr;
  }

  .partnership-field__image{
    min-height: 360px;
  }

  .partnership-final-cta__actions{
    justify-content: flex-start;
  }
}

@media (max-width: 900px){
  .partnership-value-strip__grid,
  .partnership-method__timeline{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .partnership-page-hero{
    min-height: 520px;
    height: auto;
  }

  .partnership-page-hero__inner{
    left: 22px;
    bottom: 18px;
    width: calc(100vw - 44px);
  }

  .partnership-page-hero__title{
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.04;
  }

  .partnership-page-hero__lead{
    font-size: 14px;
    line-height: 1.72;
    margin-top: 12px;
  }

  .partnership-page-hero__actions{
    margin-top: 14px;
  }

  .partnership-value-strip__grid,
  .partnership-method__timeline{
    grid-template-columns: 1fr;
  }

  .partnership-fit-card{
    padding: 26px 22px;
  }
}

/* ----------------------------------------------------------------------
   Partnership page, smartphone only
   Scoped to dedicated Partnership page only
   ---------------------------------------------------------------------- */

@media (max-width: 430px){
  .partnership-page-hero{
    min-height: 560px;
    height: auto;
  }

  .partnership-page-hero__inner{
    left: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
  }

  .partnership-page-hero__kicker{
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .partnership-page-hero__title{
    max-width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.02;
  }

  .partnership-page-hero__lead{
    max-width: 100%;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.66;
  }

  .partnership-page-hero__actions{
    margin-top: 14px;
  }

  .partnership-growth__image{
    min-height: 320px;
  }

  .partnership-value-strip__item,
  .partnership-method__step,
  .partnership-gains__card{
    padding: 22px 18px 20px;
  }

  .partnership-fit-card{
    padding: 22px 18px;
  }

  .partnership-final-cta__box{
    padding: 22px 18px;
    gap: 18px;
  }
}

@media (max-width: 393px){
  .partnership-page-hero__title{
    font-size: clamp(26px, 7.8vw, 32px);
  }

  .partnership-page-hero__lead{
    font-size: 12.5px;
    line-height: 1.64;
  }
}

/* ======================================================================
   24. PRODUCT PAGE
   Scoped to dedicated product page only
   ====================================================================== */

.product-page{
  background:
    radial-gradient(circle at top center, rgba(183,155,58,0.07), transparent 24%),
    linear-gradient(180deg, #0a0a0a 0%, #0b0b0b 100%);
}

.product-page-kicker{
  margin: 0 0 14px 0;
  color: rgba(183,155,58,0.94);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ----------------------------------------------------------------------
   Product hero — matches about-hero dimensions exactly
   ---------------------------------------------------------------------- */

.product-hero{
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  width: 100%;
  height: clamp(500px, 62vh, 640px);
  min-height: 500px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #111;
}

.product-hero__media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
}

.product-hero__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #111;
}

.product-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
    radial-gradient(circle at 20% 20%, rgba(183,155,58,0.10), transparent 28%);
}

.product-hero__inner{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 28px;
}

.product-hero__content{
  max-width: 780px;
}

.product-hero__kicker{
  margin: 0 0 10px 0;
  color: rgba(183,155,58,0.92);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

.product-hero__title{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  font-size: clamp(48px, 5vw, 68px);
}

.product-hero__scientific{
  margin: 6px 0 0 0;
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(242,242,242,0.6);
  font-style: italic;
}

.product-hero__lead{
  margin: 14px 0 0 0;
  max-width: 660px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.72;
  color: rgba(242,242,242,0.82);
}

.product-hero__meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(242,242,242,0.62);
}

.product-hero__meta-sep{
  color: rgba(183,155,58,0.5);
}

.product-hero__meta-item{
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-hero__flag{
  width: 18px;
  height: auto;
  border-radius: 2px;
}

.product-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.product-hero__brand{
  position: absolute;
  bottom: 28px;
  right: clamp(28px, 4.2vw, 88px);
  z-index: 2;
}

.product-hero__brand-logo{
  height: 36px;
  width: auto;
  opacity: 0.85;
  display: block;
}

/* ----------------------------------------------------------------------
   Product page — commercial sections
   ---------------------------------------------------------------------- */

/* Shared section heading */
.product-section-head{
  margin-bottom: clamp(32px, 4vw, 52px);
}
.product-section-head--center{
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.product-section-head__lead{
  margin-top: 14px;
  color: rgba(242,242,242,0.72);
  line-height: 1.82;
  font-size: clamp(14px, 1.2vw, 16px);
}

/* ── Fish Banner ── */
.product-fish-banner{
  background: var(--bg);
  padding: clamp(32px, 5vw, 64px) clamp(16px, 5vw, 80px);
}

.product-fish-banner__inner{
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-fish-banner__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 320px;
}

/* ── Formats ── */
.product-formats__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.product-format-card{
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-format-card__image{
  height: 200px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center center;
}

.product-format-card__body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.4vw, 30px);
}

.product-format-card--active{
  border-color: rgba(183,155,58,0.3);
}

.product-format-card__status{
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  align-self: flex-start;
}

.product-format-card--active .product-format-card__status{
  background: rgba(183,155,58,0.15);
  color: rgba(183,155,58,0.95);
  border: 1px solid rgba(183,155,58,0.3);
}

.product-format-card--request .product-format-card__status{
  background: rgba(255,255,255,0.06);
  color: rgba(242,242,242,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

.product-format-card__name{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  color: #f2f2f2;
}

.product-format-card__desc{
  color: rgba(242,242,242,0.72);
  line-height: 1.82;
  margin-bottom: 16px;
  font-size: 14px;
}

.product-format-card__specs{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.product-format-card__specs li{
  font-size: 13px;
  color: rgba(242,242,242,0.58);
  padding-left: 14px;
  position: relative;
}

.product-format-card__specs li::before{
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(183,155,58,0.5);
}

/* ── Buyers ── */
.product-buyer-card__icon{
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: rgba(183,155,58,0.85);
}

.product-buyer-card__icon svg{
  width: 100%;
  height: 100%;
}

.product-buyers__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.product-buyer-card{
  padding: clamp(22px, 2.8vw, 34px);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
}

.product-buyer-card__title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  color: #f2f2f2;
  margin: 0 0 12px;
}

.product-buyer-card p{
  color: rgba(242,242,242,0.72);
  line-height: 1.82;
  font-size: 14px;
  margin-bottom: 16px;
}

.product-buyer-card ul{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-buyer-card ul li{
  font-size: 13px;
  color: rgba(242,242,242,0.55);
  padding-left: 14px;
  position: relative;
}

.product-buyer-card ul li::before{
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(183,155,58,0.6);
  font-size: 16px;
  line-height: 1.2;
}

/* ── Processing ── */
.product-processing__grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.product-processing__step{
  margin: 0;
  display: flex;
  flex-direction: column;
}

.product-processing__image{
  height: clamp(160px, 18vw, 240px);
  border-radius: 14px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.product-processing__step figcaption{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-processing__step-num{
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(183,155,58,0.8);
  text-transform: uppercase;
}

.product-processing__step strong{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  color: #f2f2f2;
}

.product-processing__step p{
  font-size: 13px;
  color: rgba(242,242,242,0.62);
  line-height: 1.78;
  margin: 0;
}

/* ── Specs ── */
.product-specs__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.product-specs__copy p{
  color: rgba(242,242,242,0.72);
  line-height: 1.88;
  margin-bottom: 16px;
}

.product-specs__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-specs__tags span{
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(183,155,58,0.1);
  border: 1px solid rgba(183,155,58,0.25);
  color: rgba(183,155,58,0.9);
}

.product-specs__sheet{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: clamp(22px, 2.8vw, 36px);
}

.product-spec-list{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.product-spec-row{
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.product-spec-row:last-child{
  border-bottom: none;
}

.product-spec-label{
  flex: 0 0 140px;
  color: rgba(242,242,242,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  padding-top: 2px;
}

.product-spec-value{
  color: rgba(242,242,242,0.88);
  line-height: 1.6;
}

/* ── Exclusivity section ── */
.product-exclusivity{
  background: linear-gradient(135deg, rgba(183,155,58,0.07) 0%, rgba(0,0,0,0) 60%);
  border-top: 1px solid rgba(183,155,58,0.15);
  border-bottom: 1px solid rgba(183,155,58,0.15);
}
.product-exclusivity__header{
  max-width: 740px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.product-exclusivity__title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.18;
  color: #f2f2f2;
  margin: 0 0 18px;
}
.product-exclusivity__lead{
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: rgba(242,242,242,0.70);
  max-width: 680px;
}
.product-exclusivity__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.product-exclusivity__card{
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}
.product-exclusivity__card-icon{
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: rgba(183,155,58,0.75);
}
.product-exclusivity__card-icon svg{
  width: 100%;
  height: 100%;
}
.product-exclusivity__card h3{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 400;
  color: #f2f2f2;
  margin: 0 0 12px;
}
.product-exclusivity__card p{
  font-size: 13px;
  line-height: 1.75;
  color: rgba(242,242,242,0.62);
  margin: 0;
}
.product-exclusivity__partnership{
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: rgba(183,155,58,0.06);
  border: 1px solid rgba(183,155,58,0.22);
}
.product-exclusivity__partnership-logo{
  flex-shrink: 0;
  width: clamp(140px, 14vw, 200px);
}
.product-exclusivity__partnership-logo img{
  width: 100%;
  display: block;
  opacity: 0.90;
}
.product-exclusivity__partnership-label{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.85);
  margin: 0 0 10px;
}
.product-exclusivity__partnership-text{
  font-size: 14px;
  line-height: 1.78;
  color: rgba(242,242,242,0.72);
  margin: 0;
}
@media (max-width: 860px){
  .product-exclusivity__grid{
    grid-template-columns: 1fr;
  }
  .product-exclusivity__partnership{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Supplier trust ── */
.product-supplier__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(28px, 3vw, 44px);
}

.product-supplier-card__icon{
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: rgba(183,155,58,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-supplier-card__icon svg{
  width: 100%;
  height: 100%;
}

.product-supplier-card{
  text-align: center;
  padding: clamp(18px, 2.2vw, 28px);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
}

.product-supplier-card h3{
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  color: #f2f2f2;
  margin: 0 0 10px;
  line-height: 1.3;
}

.product-supplier-card p{
  font-size: 13px;
  color: rgba(242,242,242,0.62);
  line-height: 1.82;
  margin: 0;
}

/* ── Final CTA ── */
.product-cta__box{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
}

.product-cta__content p:not(.section-eyebrow){
  color: rgba(242,242,242,0.74);
  line-height: 1.82;
  margin-top: 10px;
}

.product-cta__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1100px){
  .product-formats__grid,
  .product-buyers__grid,
  .product-supplier__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-processing__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-specs__grid,
  .product-cta__box{
    grid-template-columns: 1fr;
  }

  .product-cta__actions{
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px){
  .product-processing__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .product-formats__grid,
  .product-buyers__grid,
  .product-supplier__grid,
  .product-processing__grid{
    grid-template-columns: 1fr;
  }
}

.product-page-hero__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.product-page-hero__copy,
.product-page-hero__media{
  min-width: 0;
}

.product-page-hero__copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.product-page-heading{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.product-page-heading__title{
  min-width: 0;
}

.product-page-title{
  margin: 0 0 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: var(--gold-2);
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
}

.product-page-title__sub{
  display: block;
  margin-top: 8px;
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: rgba(242,242,242,0.82);
}

.product-page-lead{
  margin: 0 0 22px 0;
  color: rgba(242,242,242,0.80);
  font-size: 16px;
  line-height: 1.8;
}

.product-page-brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 170px;
}

.product-page-brand__logo{
  width: 160px;
  min-width: 160px;
  max-width: 160px;
  height: auto;
}

.product-page-brand__note{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.96);
  text-align: center;
}

.product-page-meta{
  margin-top: 8px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-page-meta__row{
  display: grid;
  grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-page-meta__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.58);
}

.product-page-meta__value{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
}

.product-page-meta__value--inline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-page-flag{
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.product-page-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-page-hero__media{
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.product-page-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-page-section-heading{
  max-width: 980px;
  margin-bottom: 22px;
}

.product-page-value-grid,
.product-page-usage-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-page-value-card,
.product-page-usage-card{
  padding: 22px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.product-page-value-card h3,
.product-page-usage-card h3{
  margin: 0 0 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
}

.product-page-value-card p,
.product-page-usage-card p{
  margin: 0;
  color: rgba(242,242,242,0.76);
  line-height: 1.72;
}

.product-page-details__grid,
.product-page-story__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-page-copy-card,
.product-page-spec-card{
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.product-page-copy-card p{
  color: rgba(242,242,242,0.78);
  line-height: 1.8;
}

.product-page-spec-list{
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-page-spec-row{
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-page-spec-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.58);
}

.product-page-spec-value{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.94);
}

.product-page-story__media{
  min-width: 0;
}

.product-page-story__image{
  min-height: 460px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow);
}

.product-page-story__copy{
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.product-page-story__copy p{
  color: rgba(242,242,242,0.78);
  line-height: 1.8;
}

.product-page-assurance__box{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.product-page-assurance__content p{
  color: rgba(242,242,242,0.78);
  line-height: 1.8;
  margin: 0;
}

.product-page-assurance__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1100px){
  .product-page-hero__grid,
  .product-page-details__grid,
  .product-page-story__grid{
    grid-template-columns: 1fr;
  }

  .product-page-value-grid,
  .product-page-usage-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-assurance__box{
    grid-template-columns: 1fr;
  }

  .product-page-assurance__actions{
    justify-content: flex-start;
  }
}

@media (max-width: 760px){
  .product-page-hero{
    padding-top: 28px;
  }

  .product-page-hero__copy,
  .product-page-copy-card,
  .product-page-spec-card,
  .product-page-story__copy,
  .product-page-assurance__box{
    padding: 22px 18px;
  }

  .product-page-heading{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .product-page-brand{
    align-items: flex-start;
  }

  .product-page-brand__logo{
    width: 130px;
    min-width: 130px;
    max-width: 130px;
  }

  .product-page-meta__row,
  .product-page-spec-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-page-hero__media{
    min-height: 320px;
  }

  .product-page-story__image{
    min-height: 280px;
  }

  .product-page-value-grid,
  .product-page-usage-grid{
    grid-template-columns: 1fr;
  }

  .product-page-title{
    font-size: clamp(30px, 10vw, 42px);
  }
}

/* iPhone Pro / Pro Max range */
@media (max-width: 430px){}

/* iPad 11-inch portrait and below */
@media (max-width: 834px){}

/* iPad Pro 12.9-inch / large tablet behavior */
@media (max-width: 1024px){}

/* Large screen refinement */
@media (min-width: 1200px){}

/* ======================================================================
   DONCELLA PRODUCT PAGE — Coming soon styles
   ====================================================================== */

/* Static hero (no video) */
.product-hero--static .product-hero__media{
  background: var(--bg);
}
.product-hero__bg-img{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.55;
}

/* Incoming / new development badge */
.product-incoming-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(183,155,58,0.45);
  border-radius: 100px;
  background: rgba(183,155,58,0.08);
  color: rgba(183,155,58,0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-incoming-badge__dot{
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(183,155,58,0.92);
  animation: doncellaPulse 2s ease-in-out infinite;
}
@keyframes doncellaPulse{
  0%,100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.4; transform: scale(0.7); }
}

/* Culinary highlights grid */
.product-culinary-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px,1.6vw,24px);
}
.product-culinary-card{
  padding: clamp(22px,2.5vw,34px) clamp(18px,2vw,28px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  text-align: center;
  transition: border-color 300ms ease, background 300ms ease;
}
.product-culinary-card:hover{
  border-color: rgba(183,155,58,0.22);
  background: rgba(183,155,58,0.04);
}
.product-culinary-card__icon{
  width: 44px;
  height: 44px;
  color: rgba(183,155,58,0.88);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-culinary-card__icon svg{
  width: 100%;
  height: 100%;
}
.product-culinary-card__title{
  margin: 0 0 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px,1.4vw,20px);
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.25;
}
.product-culinary-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(242,242,242,0.70);
}

/* Coming-soon format card — placeholder image */
.product-format-card--coming .product-format-card__image{
  display: none;
}
.product-format-card__media{
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.product-format-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.product-format-card__placeholder{
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.product-format-card__placeholder svg{
  width: 56px;
  height: 56px;
  color: rgba(183,155,58,0.35);
}
.product-format-card--coming .product-format-card__status{
  background: rgba(183,155,58,0.10);
  color: rgba(183,155,58,0.90);
  border: 1px solid rgba(183,155,58,0.25);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

/* Heritage section */
.product-heritage__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px,4vw,72px);
  align-items: center;
}
.product-heritage__copy p{
  margin: 0 0 16px 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(242,242,242,0.75);
}
.product-heritage__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.product-heritage__tags span{
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(242,242,242,0.68);
  text-transform: uppercase;
}
.product-heritage__media{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-heritage__img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.product-heritage__media-caption{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-heritage__brand-logo{
  height: 28px;
  width: auto;
  opacity: 0.88;
}
.product-heritage__media-caption p{
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Gold spec value */
.product-spec-value--gold{
  color: rgba(183,155,58,0.96);
  font-weight: 600;
}

/* Cooking method tags — interactive */
.product-cooking-tags{
  gap: 10px;
}
.product-cooking-tag{
  cursor: pointer;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(242,242,242,0.75);
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
  user-select: none;
}
.product-cooking-tag:hover{
  border-color: rgba(183,155,58,0.55);
  color: rgba(183,155,58,0.96);
  background: rgba(183,155,58,0.07);
}

/* Cooking method tooltip card */
.cooking-tip{
  position: fixed;
  z-index: 9999;
  width: 280px;
  border-radius: 14px;
  overflow: visible;
  background: rgba(14,14,14,0.97);
  border: 1px solid rgba(183,155,58,0.30);
  box-shadow: 0 20px 56px rgba(0,0,0,0.80), 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease;
  --arrow-offset: 0px;
}
.cooking-tip--visible{
  opacity: 1;
  transform: translateY(0);
}
/* Arrow pointing up toward the button */
.cooking-tip::before,
.cooking-tip::after{
  content: '';
  position: absolute;
  left: calc(50% + var(--arrow-offset));
  transform: translateX(-50%);
  width: 0;
  height: 0;
  pointer-events: none;
}
.cooking-tip::before{
  top: -9px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid rgba(183,155,58,0.35);
}
.cooking-tip::after{
  top: -7px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(14,14,14,0.97);
}
.cooking-tip__img-wrap{
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border-radius: 14px 14px 0 0;
}
.cooking-tip__bg{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 120ms ease;
}
.cooking-tip__placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(183,155,58,0.35);
  letter-spacing: 0.04em;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 12px
  );
}
.cooking-tip__body{
  padding: 13px 16px 15px;
  border-top: 1px solid rgba(183,155,58,0.20);
}
.cooking-tip__label{
  margin: 0 0 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(183,155,58,0.95);
}
.cooking-tip__desc{
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(242,242,242,0.65);
}

/* Responsive — Doncella page */
@media (max-width: 1100px){
  .product-culinary-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-heritage__grid{
    grid-template-columns: 1fr;
  }
  .product-heritage__media{
    max-width: 680px;
  }
}
@media (max-width: 640px){
  .product-culinary-grid{
    grid-template-columns: 1fr;
  }
  .product-fish-banner__stat-sep{
    display: none;
  }
  .product-fish-banner__bar{
    gap: 14px 0;
  }
}


