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

:root {
  /* Brand palette */
  --mint: #94BE9E;
  --deep: #231A1C;
  --coral: #F0646B;
  --sky: #C5DBEF;
  --lav: #EEF1FF;

  /* Neutrals */
  --bg: #0B0B0C;
  --paper: #FBFBFC;
  --paper-2: #F3F4F7;
  --ink: #0F0F12;
  --ink-2: #33343A;
  --ink-3: #6A6B73;
  --line: rgba(15,15,18,0.10);
  --shadow: 0 14px 60px rgba(0,0,0,0.45);

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Arizona", "Playfair Display", Georgia, "Times New Roman", serif;

  /* ✅ Desktop “sheet” sizing (fixed) */
  --pageW: 860px;     /* change this: 860 / 900 / 960 */
  --pageH: 820px;     /* fixed height on desktop, not tied to viewport */

  /* Spacing */
  --pad: clamp(16px, 4vw, 48px);
  --radius: 18px;

  /* Image padding (contain) */
  --imgPad: clamp(10px, 2.2vw, 28px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ===== A4 LANDSCAPE SHEET ===== */
.page{
  width: 297mm;          /* A4 landscape width */
  height: 210mm;         /* A4 landscape height */
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}


/* Scale A4 proportionally on smaller screens */
@media (max-width: 1200px){
  .page{
    width: calc(100vw - 40px);
    height: calc((100vw - 40px) * 210 / 297);
    margin: 20px auto;
  }
}

/* Mobile: edge-to-edge, still fixed-ish */
@media (max-width: 600px){
  .page{
    width: 100%;
    height: calc(100vw * 210 / 297);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* =========================
   COVER
   ========================= */
.cover{
  background: linear-gradient(145deg, var(--deep) 0%, #121013 55%, #1A1418 100%);
  color: #FFFFFF;
  display: flex;
  align-items: flex-end;
  padding: var(--pad);
}

.cover::before{
  content:'';
  position: absolute;
  inset: 0;
  background: url("assets/cover-right.png") center/cover no-repeat;
  opacity: 0.55;
  filter: saturate(0.95) contrast(1.05);
}

.cover::after{
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11,11,12,0.86) 0%,
    rgba(11,11,12,0.58) 45%,
    rgba(11,11,12,0.16) 100%
  );
}

.cover .brand{
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cover h1{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 6vw, 4.1rem);
  text-transform: uppercase;
}

.cover h1 span{
  font-weight: 300;
  opacity: 0.85;
  text-transform: none;
  letter-spacing: 0.04em;
}

.cover .accent-line{
  width: 64px;
  height: 3px;
  background: var(--coral);
  margin: 18px 0;
}

.cover .subtitle{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.0rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
}

.cover .cat-label{
  margin-top: 26px;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

/* =========================
   BRAND STORY
   ========================= */
.brand-story{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  height: 100%;
}

.brand-story .text-side{
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-story .image-side{
  background: url("assets/brand-story.png") center/cover no-repeat;
  filter: saturate(0.95) contrast(1.02);
}

.brand-story h2{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  margin-bottom: 12px;
}

.brand-story h2 em{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--coral);
}

.brand-story p{
  color: var(--ink-2);
  font-size: clamp(0.95rem, 1.15vw, 1.02rem);
  max-width: 60ch;
}

.brand-story .values{
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-story .value{
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  min-width: 160px;
}

@media (max-width: 800px){
  .brand-story{ grid-template-columns: 1fr; }
  .brand-story .image-side{ order: -1; min-height: 42%; }
}

/* =========================
   MOOD SPREAD (default cover)
   ========================= */
.mood-spread{
  position: relative;
  height: 100%;
  background: var(--deep);
  color: #fff;
}

.mood-spread .full-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.mood-spread::after{
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.00) 100%
  );
  pointer-events: none;
}

.mood-spread .overlay-text{
  position: absolute;
  bottom: var(--pad);
  left: var(--pad);
  z-index: 2;
  max-width: 70ch;
}

.mood-spread .overlay-text h2{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.10;
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
}

.mood-spread .overlay-text h2 em{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--sky);
}

.mood-spread .overlay-text p{
  margin-top: 10px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(0.95rem, 1.1vw, 1.03rem);
}

/* =========================
   PRODUCT PAGES
   ========================= */
.product-page{
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 0;
}

.product-page.reverse{ direction: rtl; }
.product-page.reverse > *{ direction: ltr; }

.product-photo{
  background: linear-gradient(135deg, var(--paper-2), #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  height: 100%;
  min-height: 0;
  border-right: 1px solid var(--line);
}

.product-page.reverse .product-photo{
  border-right: 0;
  border-left: 1px solid var(--line);
}

/* ✅ default product: contain (no crop) */
.product-photo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: var(--imgPad);
}

/* optional class on wrapper if you still use it */
.product-photo.contain-img{
  background: linear-gradient(135deg, var(--lav), #FFFFFF);
}

/* ✅ OPTIONAL SWITCH */
img.fit-cover{
  object-fit: cover !important;
  padding: 0 !important;
}

.product-info{
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;

  height: 100%;
  min-height: 0;
}

.product-info .series-label{
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.product-info h3{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.0;
  font-size: clamp(2.0rem, 4.4vw, 3.2rem);
  text-transform: uppercase;
}

.product-info .tagline{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--coral);
  font-size: clamp(1.0rem, 1.35vw, 1.15rem);
}

.product-info .divider{
  width: 44px;
  height: 2px;
  background: var(--coral);
  margin: 10px 0 4px;
}

.product-info .description{
  color: var(--ink-2);
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  line-height: 1.75;
  max-width: 62ch;
}

.product-info .category{
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Mobile stack */
@media (max-width: 800px){
  .product-page{ grid-template-columns: 1fr; }
  .product-page.reverse{ direction: ltr; }

  .product-photo{
    height: 48%;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-info{ height: 52%; }
}

/* =========================
   OVERVIEW
   ========================= */
.overview-page{
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.overview-page h2{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
}

.overview-page .page-subtitle{
  color: var(--ink-3);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.series-grid{
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.series-cell{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #FFFFFF, var(--paper-2));
}

.series-cell .cell-name{
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.series-cell .cell-tagline{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--coral);
  margin-top: 6px;
  margin-bottom: 10px;
}

.series-cell .cell-use{
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* =========================
   CONTACT
   ========================= */
.contact-page{
  background: linear-gradient(145deg, var(--deep) 0%, #141116 55%, #1C151A 100%);
  color: #fff;
  padding: var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.contact-page h2{
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  text-transform: uppercase;
}

.contact-page h2 span{
  font-weight: 300;
  opacity: 0.85;
  text-transform: none;
  letter-spacing: 0.04em;
}

.contact-page .contact-tagline{
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.86);
  margin-top: 10px;
  margin-bottom: 22px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.contact-page .contact-details{
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  text-align: left;
}

.contact-page .contact-item{
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 10px;
}

.contact-page .contact-label{
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.contact-page .contact-value{
  color: #fff;
  font-size: 0.98rem;
}

.contact-page .footer-note{
  margin-top: 16px;
  color: rgba(255,255,255,0.68);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
}

@media (max-width: 650px){
  .contact-page .contact-details{ grid-template-columns: 1fr; }
}

@media print {
  body {
    background: white;
  }

  .page{
    width: 297mm;
    height: 210mm;
    margin: 0;
    box-shadow: none;
    page-break-after: always;
  }
}