@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Cormorant:ital,wght@1,300&display=swap');

/* ━━ GAGGENAU DESIGN TOKENS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Inspired by gaggenau.com — Monochromatic luxury since 1683 */
:root{
  --gg-black:  #000000;
  --gg-white:  #FFFFFF;
  --gg-stone:  #F0EFED;  /* warm off-white */
  --gg-warm:   #EAE7E2;  /* slightly warmer */
  --gg-gray:   #8B8580;  /* mid gray */
  --gg-dark:   #1A1816;  /* warm near-black */
  --gg-border: #D8D5D0;
  --gg-ease:   cubic-bezier(.22,1,.36,1);
}

/* ━━ BASE ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg *{box-sizing:border-box;margin:0;padding:0;}
.gg{
  font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;
  font-weight:300;font-size:16px;
  color:var(--gg-black);background:var(--gg-white);
  -webkit-font-smoothing:antialiased;
}
.gg a{text-decoration:none;color:inherit;}
.container{max-width:1380px;margin:0 auto;padding:0 72px;}

/* ━━ TYPOGRAPHY HELPERS ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-label{
  font-size:9px;letter-spacing:5px;text-transform:uppercase;
  font-weight:400;color:var(--gg-gray);font-family:'Helvetica Neue',sans-serif;
}
.gg-h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(48px,6vw,96px);font-weight:300;font-style:italic;
  line-height:.95;letter-spacing:-2px;color:var(--gg-white);
}
.gg-h2{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(36px,4.5vw,72px);font-weight:300;font-style:italic;
  line-height:1;letter-spacing:-1px;color:var(--gg-black);
}
.gg-h2-white{color:var(--gg-white);}
.gg-h3{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(22px,2.5vw,36px);font-weight:300;font-style:italic;
  line-height:1.1;color:var(--gg-black);
}
.gg-p{
  font-size:14px;font-weight:300;line-height:1.85;
  color:rgba(0,0,0,.5);
}
.gg-p-white{color:rgba(255,255,255,.5);}

/* ━━ 1. HEADER ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-header{
  position:absolute;top:0;left:0;right:0;z-index:20;
  padding:36px 72px;
  display:flex;align-items:center;justify-content:space-between;
}
.gg-header::after{
  content:'';position:absolute;bottom:0;left:72px;right:72px;
  height:1px;background:rgba(255,255,255,.1);
}
.gg-wordmark{
  font-family:'Helvetica Neue',Helvetica,sans-serif;
  font-size:11px;font-weight:300;letter-spacing:6px;
  text-transform:uppercase;color:var(--gg-white);
}
.gg-nav{display:flex;align-items:center;gap:52px;}
.gg-nav a{
  font-size:10px;letter-spacing:2.5px;text-transform:uppercase;
  color:rgba(255,255,255,.45);font-weight:300;transition:color .3s;
}
.gg-nav a:hover{color:var(--gg-white);}
.gg-nav-cta{
  font-size:10px;letter-spacing:2px;text-transform:uppercase;
  color:var(--gg-black);background:var(--gg-white);
  padding:10px 24px;font-weight:400;transition:all .25s;
  cursor:pointer;border:none;font-family:'Helvetica Neue',sans-serif;
}
.gg-nav-cta:hover{background:var(--gg-stone);}

/* ━━ 2. HERO — Full viewport, black/white drama ━━━━━━━━━━━━━━━ */
/* .gg-hero geometry → see SLIDER section below */
/* Subtle texture pattern */
/* Vertical line accent */
.gg-hero-line{
  position:absolute;left:72px;top:0;bottom:0;
  width:1px;
  background:linear-gradient(to bottom,transparent 0%,rgba(255,255,255,.15) 15%,rgba(255,255,255,.15) 85%,transparent 100%);
  z-index:2;
}

/* Hero inner — bottom-aligned */
.gg-hero-inner{
  flex:1;display:flex;flex-direction:column;
  justify-content:flex-end;
  padding:160px 72px 80px;
  position:relative;z-index:2;
  max-width:900px;
  text-shadow:0 1px 8px rgba(0,0,0,.55),0 2px 24px rgba(0,0,0,.35);
}
.gg-hero-label{
  font-size:9px;letter-spacing:6px;text-transform:uppercase;
  color:rgba(255,255,255,.35);font-weight:300;
  margin-bottom:28px;display:flex;align-items:center;gap:20px;
}
.gg-hero-label::before{
  content:'';width:40px;height:1px;background:rgba(255,255,255,.25);
}
.gg-hero-year{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(14px,1.2vw,18px);font-weight:300;font-style:italic;
  color:rgba(255,255,255,.25);letter-spacing:3px;
  margin-bottom:20px;
}
.gg-hero-title{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(56px,7vw,108px);
  font-weight:300;font-style:italic;
  line-height:.9;letter-spacing:-3px;
  color:var(--gg-white);margin-bottom:40px;
}
.gg-hero-title em{
  font-style:normal;color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.4);
}
.gg-hero-desc{
  font-size:15px;font-weight:300;line-height:1.8;
  color:rgba(255,255,255,.42);max-width:480px;
  margin-bottom:52px;
}
/* CTA buttons */
.gg-btn-black{
  display:inline-flex;align-items:center;gap:16px;
  background:var(--gg-white);color:var(--gg-black);
  font-size:10px;letter-spacing:3px;text-transform:uppercase;
  font-weight:400;padding:16px 40px;transition:all .3s;
  font-family:'Helvetica Neue',sans-serif;cursor:pointer;border:none;
}
.gg-btn-black:hover{background:var(--gg-stone);}
.gg-btn-outline{
  display:inline-flex;align-items:center;gap:16px;
  border:1px solid rgba(255,255,255,.25);color:rgba(255,255,255,.6);
  font-size:10px;letter-spacing:3px;text-transform:uppercase;
  font-weight:400;padding:15px 40px;margin-left:16px;
  transition:all .3s;font-family:'Helvetica Neue',sans-serif;
  cursor:pointer;background:none;
}
.gg-btn-outline:hover{border-color:rgba(255,255,255,.6);color:var(--gg-white);}

/* Stats row */
.gg-hero-stats{
  padding:0 72px 52px;
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.15);
  padding-top:36px;position:relative;z-index:2;
  text-shadow:0 1px 6px rgba(0,0,0,.5);
}
.gg-hero-stat{padding:0 40px;border-right:1px solid rgba(255,255,255,.06);}
.gg-hero-stat:first-child{padding-left:0;}
.gg-hero-stat:last-child{border-right:none;}
.gg-stat-n{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:42px;font-weight:300;font-style:italic;
  color:var(--gg-white);line-height:1;letter-spacing:-1px;
  margin-bottom:6px;
}
.gg-stat-l{
  font-size:9px;letter-spacing:3px;text-transform:uppercase;
  color:rgba(255,255,255,.28);font-weight:300;
}

/* ━━ 3. PHILOSOPHY STRIP ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-philosophy{
  background:var(--gg-stone);padding:100px 0;
}
.gg-phil-grid{
  display:grid;grid-template-columns:280px 1fr;gap:80px;align-items:center;
}
.gg-phil-side{display:flex;flex-direction:column;gap:24px;}
.gg-phil-num{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:72px;font-weight:300;font-style:italic;
  color:var(--gg-border);line-height:1;letter-spacing:-2px;
}
.gg-phil-line{width:1px;height:56px;background:var(--gg-black);}
.gg-phil-quote{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(28px,3.5vw,52px);font-weight:300;font-style:italic;
  color:var(--gg-black);line-height:1.15;
}
.gg-phil-body{
  font-size:14px;font-weight:300;color:rgba(0,0,0,.5);
  line-height:1.9;max-width:620px;margin-top:28px;
}

/* ━━ 4. CATEGORIES — White, editorial ━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-cats{background:var(--gg-white);padding:100px 0;}
.gg-sect-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:56px;
  border-bottom:1px solid var(--gg-border);padding-bottom:24px;
}
.gg-all-link{
  font-size:9px;letter-spacing:3px;text-transform:uppercase;
  color:var(--gg-gray);border-bottom:1px solid var(--gg-border);
  padding-bottom:2px;transition:all .3s;font-weight:400;
}
.gg-all-link:hover{color:var(--gg-black);border-color:var(--gg-black);}

/* Category group label */
.gg-cat-group-lbl{
  font-size:9px;letter-spacing:4px;text-transform:uppercase;
  color:var(--gg-gray);font-weight:300;
  margin:44px 0 20px;padding-bottom:12px;
  border-bottom:1px solid var(--gg-border);
}
.gg-cat-group-lbl:first-of-type{margin-top:0;}

/* Scroll */
.gg-cat-scroll-outer{position:relative;margin-bottom:8px;}
.gg-cat-scroll{
  overflow-x:auto;overflow-y:visible;
  scrollbar-width:thin;
  scrollbar-color:rgba(0,0,0,.15) transparent;
  padding:4px 4px 16px;scroll-behavior:smooth;
}
.gg-cat-scroll::-webkit-scrollbar{height:1px;}
.gg-cat-scroll::-webkit-scrollbar-thumb{background:rgba(0,0,0,.2);}
.gg-cat-row{display:flex;gap:2px;min-width:max-content;}

/* Category tile — Gaggenau style: large square, no rounded corners */
.gg-cat-tile{
  display:flex;flex-direction:column;
  width:220px;flex-shrink:0;text-decoration:none;cursor:pointer;
}
.gg-cat-tile-box{
  width:220px;height:220px;
  background:var(--gg-stone);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
  transition:background .4s var(--gg-ease);
  border:1px solid transparent;
}
.gg-cat-tile:hover .gg-cat-tile-box{
  background:var(--gg-warm);
  border-color:var(--gg-border);
}
/* Top border on hover — black (not red!) */
.gg-cat-tile-box::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:1px;background:var(--gg-black);
  transform:scaleX(0);transform-origin:left;
  transition:transform .4s var(--gg-ease);
}
.gg-cat-tile:hover .gg-cat-tile-box::before{transform:scaleX(1);}

.gg-cat-tile-img{
  width:78%;height:78%;object-fit:contain;
  transition:transform .5s var(--gg-ease);
  filter:grayscale(8%);
}
.gg-cat-tile:hover .gg-cat-tile-img{transform:scale(1.06) translateY(-3px);}

/* Name + number */
.gg-cat-tile-name{
  font-size:12px;font-weight:300;color:var(--gg-black);
  margin-top:12px;letter-spacing:.5px;transition:color .2s;
  font-family:'Helvetica Neue',sans-serif;
}
.gg-cat-tile-count{
  font-size:10px;font-weight:300;color:var(--gg-gray);
  margin-top:3px;letter-spacing:.5px;font-family:'Helvetica Neue',sans-serif;
}

/* Scroll nav arrows */
.gg-cat-nav{
  position:absolute;top:50%;transform:translateY(-60%);
  width:36px;height:36px;
  background:var(--gg-white);border:1px solid var(--gg-border);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:10;transition:all .25s;margin-top:-8px;
}
.gg-cat-nav:hover{background:var(--gg-black);border-color:var(--gg-black);color:var(--gg-white);}
.gg-cat-nav svg{width:12px;height:12px;stroke:currentColor;stroke-width:2;}
.gg-cat-nav-prev{left:-18px;}
.gg-cat-nav-next{right:-18px;}

/* ━━ 5. SERIES SHOWCASE — Dark architectural ━━━━━━━━━━━━━━━━━━ */
.gg-series{background:var(--gg-dark);padding:100px 0;}
.gg-series-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:rgba(255,255,255,.04);
  margin-top:60px;
}
.gg-series-card{
  background:var(--gg-dark);padding:52px 48px;
  display:flex;flex-direction:column;
  border-bottom:1px solid transparent;
  transition:all .35s var(--gg-ease);
}
.gg-series-card:hover{
  background:rgba(255,255,255,.02);
  border-bottom-color:var(--gg-white);
}
.gg-series-num{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:64px;font-weight:300;font-style:italic;
  color:rgba(255,255,255,.04);line-height:1;
  margin-bottom:20px;transition:color .35s;
}
.gg-series-card:hover .gg-series-num{color:rgba(255,255,255,.08);}
.gg-series-name{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:28px;font-weight:300;font-style:italic;
  color:var(--gg-white);margin-bottom:14px;
}
.gg-series-desc{
  font-size:13px;font-weight:300;line-height:1.8;
  color:rgba(255,255,255,.35);flex:1;
  font-family:'Helvetica Neue',sans-serif;
}
.gg-series-tag{
  font-size:9px;letter-spacing:3px;text-transform:uppercase;
  color:rgba(255,255,255,.18);margin-top:24px;
  font-family:'Helvetica Neue',sans-serif;
  padding-top:16px;border-top:1px solid rgba(255,255,255,.06);
}

/* ━━ 6. MANIFESTO — Stone, typographic ━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-manifesto{
  background:var(--gg-stone);padding:140px 0;text-align:center;
  position:relative;overflow:hidden;
}
.gg-manifesto::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:1px;background:var(--gg-border);
}
.gg-manifesto-kicker{
  font-size:9px;letter-spacing:5px;text-transform:uppercase;
  color:var(--gg-gray);margin-bottom:32px;
}
.gg-manifesto-title{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(48px,7vw,108px);font-weight:300;font-style:italic;
  color:var(--gg-black);line-height:.9;letter-spacing:-3px;
  margin-bottom:36px;
}
.gg-manifesto-title em{
  font-style:normal;color:transparent;
  -webkit-text-stroke:1px rgba(0,0,0,.3);
}
.gg-manifesto-sub{
  font-size:14px;font-weight:300;color:var(--gg-gray);
  max-width:480px;margin:0 auto 64px;line-height:1.8;
  font-family:'Helvetica Neue',sans-serif;
}
.gg-manifesto-facts{
  display:inline-flex;border:1px solid var(--gg-border);
}
.gg-manifesto-fact{
  padding:28px 60px;border-right:1px solid var(--gg-border);text-align:center;
}
.gg-manifesto-fact:last-child{border-right:none;}
.gg-manifesto-fact-n{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:36px;font-weight:300;font-style:italic;
  color:var(--gg-black);line-height:1;margin-bottom:6px;
}
.gg-manifesto-fact-l{
  font-size:9px;letter-spacing:3px;text-transform:uppercase;
  color:var(--gg-gray);font-family:'Helvetica Neue',sans-serif;
}

/* ━━ 7. PRODUCTS — White, clean ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-products{background:var(--gg-white);padding:100px 0;}
.gg-prod-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--gg-border);
  margin-top:52px;border:1px solid var(--gg-border);
}
.gg-prod-card{
  background:var(--gg-white);display:flex;flex-direction:column;
  text-decoration:none;
  border-top:1px solid transparent;
  transition:all .3s;
}
.gg-prod-card:hover{
  background:var(--gg-stone);border-top-color:var(--gg-black);
}
.gg-prod-img-wrap{
  height:260px;background:var(--gg-stone);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;
}
.gg-prod-img-wrap img{
  width:78%;height:78%;object-fit:contain;
  transition:transform .5s var(--gg-ease);
  filter:grayscale(5%);
}
.gg-prod-card:hover .gg-prod-img-wrap img{transform:scale(1.04) translateY(-3px);}
.gg-prod-series-tag{
  position:absolute;top:16px;left:16px;
  font-size:8px;letter-spacing:2px;text-transform:uppercase;
  color:var(--gg-gray);font-weight:300;font-family:'Helvetica Neue',sans-serif;
}
.gg-prod-body{
  padding:20px 22px 24px;flex:1;display:flex;flex-direction:column;
  border-top:1px solid var(--gg-border);
}
.gg-prod-name{
  font-size:13px;font-weight:300;color:var(--gg-black);
  line-height:1.4;margin-bottom:auto;font-family:'Helvetica Neue',sans-serif;
}
.gg-prod-foot{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:16px;padding-top:14px;border-top:1px solid var(--gg-border);
}
.gg-prod-price{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:18px;font-weight:300;color:var(--gg-black);
}
.gg-prod-arrow{
  width:28px;height:28px;background:var(--gg-black);
  display:flex;align-items:center;justify-content:center;transition:background .2s;
}
.gg-prod-card:hover .gg-prod-arrow{background:var(--gg-gray);}
.gg-prod-arrow svg{width:10px;height:10px;stroke:var(--gg-white);stroke-width:2;}

/* ━━ 8. CTA BOTTOM ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gg-cta{background:var(--gg-dark);padding:120px 0;text-align:center;}
.gg-cta-title{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(28px,4vw,60px);font-weight:300;font-style:italic;
  color:var(--gg-white);line-height:1.1;margin-bottom:14px;
}
.gg-cta-sub{
  font-size:13px;font-weight:300;color:rgba(255,255,255,.35);
  max-width:480px;margin:0 auto 44px;line-height:1.8;
  font-family:'Helvetica Neue',sans-serif;
}
.gg-cta-btns{display:flex;align-items:center;justify-content:center;gap:16px;}
.gg-hotline{
  font-size:12px;font-weight:300;color:rgba(255,255,255,.25);
  font-family:'Helvetica Neue',sans-serif;margin-top:28px;letter-spacing:.5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GAGGENAU HERO — BACKGROUND SLIDER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Hero base: fixed to image aspect ratio (2849:1269) ── */
.gg-hero{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:calc(100vw * 1269 / 2849);
  min-height:460px;
  max-height:760px;
  background:var(--gg-dark);
}

/* ── Slider container fills hero ── */
.gg-bg-slider{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
}

/* ── Each slide ── */
.gg-bg-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s ease;
}
.gg-bg-slide--active{
  opacity:1;
}
.gg-bg-slide-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 35%;
  display:block;
}

/* ── Dark overlay so text stays readable ── */
.gg-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(to right, rgba(0,0,0,.38) 0%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.05) 100%),
    linear-gradient(to bottom, rgba(0,0,0,.1) 0%, transparent 40%, rgba(0,0,0,.25) 100%);
  pointer-events:none;
}

/* ── Bring text content above overlay ── */
.gg-hero-line,
.gg-hero-inner,
.gg-hero-stats{
  position:relative;
  z-index:2;
}

/* ── Arrows ── */
.gg-sl-prev,
.gg-sl-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:48px; height:48px;
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s, border-color .2s;
  border-radius:0;
  backdrop-filter:blur(4px);
}
.gg-sl-prev:hover,
.gg-sl-next:hover{
  background:rgba(0,0,0,.7);
  border-color:rgba(255,255,255,.5);
}
.gg-sl-prev svg, .gg-sl-next svg{width:20px;height:20px;}
.gg-sl-prev{left:28px;}
.gg-sl-next{right:28px;}

/* ── Dots ── */
.gg-sl-dots{
  position:absolute;
  bottom:100px;
  left:72px;
  z-index:5;
  display:flex;
  gap:10px;
  align-items:center;
}
.gg-sl-dot{
  width:28px; height:2px;
  background:rgba(255,255,255,.3);
  border:none; cursor:pointer;
  transition:all .3s;
  border-radius:0;
  padding:0;
}
.gg-sl-dot--active{
  background:#fff;
  width:44px;
}
