/* ==========================================================================
   Excellent Gifting — "Warm Premium" design system (single light theme)
   Australian-owned wholesale gifting · Melbourne
   Palette: dusty rose #BC7F7B · sage #8E9C7C · clay #CE8B68 · warm cream paper
   Type: Fraunces (display serif) · Inter (body / labels)
   ========================================================================== */

:root {
  --paper:    #FBF7F2;   /* warm cream page */
  --paper-2:  #F5EDE3;   /* deeper cream section */
  --blush:    #F3E7E3;   /* soft rose tint */
  --sage-bg:  #ECEFE5;   /* soft sage tint */
  --white:    #FFFFFF;

  --ink:      #3E3833;   /* warm near-black */
  --ink-700:  #5A524A;
  --ink-soft: #6E655C;
  --muted:    #9C9288;

  --rose:      #BC7F7B;  /* primary accent (Meadow dusty rose) */
  --rose-deep: #9E635F;
  --sage:      #7E8E6B;  /* secondary accent */
  --clay:      #CE8B68;  /* warm accent, evolved from logo orange */

  --line:    #E9E0D5;
  --line-2:  #F1EAE0;
  --ink-line: rgba(62,56,51,.18);

  --shadow:   0 30px 60px -34px rgba(83,63,58,.34);
  --shadow-sm: 0 14px 30px -18px rgba(83,63,58,.28);
  --card-bg:  #FFFFFF;
  --header-bg: rgba(251,247,242,.82);

  --maxw: 1240px;
  --gut: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - (var(--gut) * 2), var(--maxw)); margin-inline: auto; }
.section { padding: clamp(60px, 8.5vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(42px, 6vw, 80px) 0; }
.section--blush { background: var(--blush); }
.section--cream { background: var(--paper-2); }
.section--sage  { background: var(--sage-bg); }
.bleed-top { border-top: 1px solid var(--line); }

/* ---------- Section label ---------- */
.label {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose-deep);
  display: flex; align-items: center; gap: 12px;
}
.label .n { color: var(--clay); font-variant-numeric: tabular-nums; }
.label--center { justify-content: center; }
.label::before { content: ""; width: 22px; height: 1px; background: var(--rose); opacity: .6; }
.label--center::before { display: none; }

/* ---------- Type ---------- */
.display { font-size: clamp(2.7rem, 6.2vw, 5rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.0; }
.h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 400; }
.h2 { font-size: clamp(1.95rem, 4vw, 3.1rem); font-weight: 400; }
.h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 500; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.28rem); line-height: 1.6; color: var(--ink-soft); max-width: 60ch; font-weight: 400; }
.muted { color: var(--muted); }
.soft  { color: var(--ink-soft); }
.serif-em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

/* accent word: dusty-rose ink + soft underline */
.mark { color: var(--rose-deep); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-family: 'Inter'; font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--rose { background: var(--rose); color: #fff; }
.btn--rose:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 18px 38px -18px rgba(158,99,95,.6); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--ink-line); }
.btn--line:hover { border-color: var(--ink); background: rgba(62,56,51,.04); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Fraunces'; font-weight: 500; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
.brand b { font-weight: 600; }
.brand-tag { font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--rose-deep); margin: -6px 0 14px; }
.brand-logo { height: 23px; width: auto; }
.brand-word { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; letter-spacing: -.02em; color: var(--ink); }
.site-footer .brand-logo { height: 26px; }
.site-footer .brand-word { font-size: 24px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: var(--rose); color: #fff;
}
.brand-mark svg { width: 19px; height: 19px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-700); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: rgba(62,56,51,.05); }
.nav-links a.active { color: var(--rose-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 8px; }

/* ---------- Pills / tags ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  font-family: 'Inter'; font-size: 12.5px; font-weight: 500; letter-spacing: .02em;
  border: 1px solid var(--line); color: var(--ink-700); background: var(--white);
}
.pill .led { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Inter'; font-size: 12.5px; font-weight: 500;
  padding: 6px 13px; border-radius: 999px; border: 1px solid var(--line);
  color: var(--ink-700); background: var(--white);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 30px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: var(--rose); box-shadow: var(--shadow); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 20px; color: var(--rose-deep);
  background: var(--blush); border: 1px solid #EAD7D2;
}
.card__icon svg { width: 23px; height: 23px; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ---------- Range / product cards ---------- */
.range-card {
  display: block; border-radius: 18px; overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.range-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--rose); }
.range-card__media { aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--paper-2); position: relative; }
.range-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.range-card:hover .range-card__media img { transform: scale(1.04); }
.range-card__placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: linear-gradient(150deg, var(--blush), var(--sage-bg));
  color: var(--rose-deep); padding: 24px;
}
.range-card__placeholder span { font-family: 'Inter'; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.range-card__body { padding: 22px 24px 26px; }
.range-card__kicker { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--clay); }
.range-card h3 { margin: 9px 0 8px; font-size: 1.5rem; }
.range-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.range-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--rose-deep); }
.range-card__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.range-card:hover .range-card__link svg { transform: translateX(3px); }
.range-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  padding: 6px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--rose-deep);
  border: 1px solid #EAD7D2;
}

/* product tile (image + name) */
.product { text-align: left; }
.product__media { aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--line); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .product__media img { transform: scale(1.04); }
.product__name { font-family: 'Fraunces'; font-weight: 500; font-size: 1.1rem; margin: 14px 0 3px; }
.product__meta { font-size: 13.5px; color: var(--muted); }

/* spec sheets (tote detail) */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.spec-sheet { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); }
@media (max-width: 760px) { .spec-grid { grid-template-columns: 1fr; } }

/* tote tiles — images are pre-squared with matching background, shown in standard square tiles */
.totes-grid .product__media { background: var(--paper-2); }

/* ---------- Hero ---------- */
.hero { padding: 132px 0 0; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-media {
  border-radius: 22px; overflow: hidden; position: relative;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  aspect-ratio: 5 / 5.4;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media__tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-media__tag .led { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

/* ---------- Editorial split / story ---------- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.feature {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--white);
}
.feature__media { background: var(--paper-2); position: relative; min-height: 100%; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feature__body { padding: clamp(30px, 4vw, 56px); align-self: center; }

/* ---------- Value rows ---------- */
.value { display: flex; gap: 18px; align-items: flex-start; }
.value__ic { width: 44px; height: 44px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--blush); color: var(--rose-deep); border: 1px solid #EAD7D2; }
.value__ic svg { width: 21px; height: 21px; }
.value h3 { font-size: 1.16rem; margin-bottom: 6px; }
.value p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- Steps ---------- */
.step__n { font-family: 'Fraunces'; font-size: 2.2rem; color: var(--rose); line-height: 1; font-weight: 400; }
.step h3 { margin: 14px 0 8px; font-size: 1.25rem; }
.step p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- Stats ---------- */
.stat__num { font-family: 'Fraunces'; font-weight: 400; font-size: clamp(2.6rem, 4.6vw, 3.9rem); line-height: .95; letter-spacing: -.02em; color: var(--rose-deep); }
.stat__label { color: var(--muted); font-size: 13.5px; margin-top: 8px; font-weight: 500; letter-spacing: .02em; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
.cols-4 { grid-template-columns: repeat(4,1fr); }
.cols-5 { grid-template-columns: repeat(5,1fr); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 16px 0; background: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee__track span { font-family: 'Fraunces'; font-style: italic; font-size: 18px; color: var(--ink-700); padding: 0 30px; position: relative; }
.marquee__track span::after { content: "✿"; color: var(--rose); position: absolute; right: -7px; font-size: 11px; top: 7px; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- CTA block ---------- */
.cta {
  border-radius: 22px; padding: clamp(40px, 6vw, 80px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #B67B77, #9E635F);
  color: #fff;
}
.cta::before { content: ""; position: absolute; width: 520px; height: 360px; top: -130px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.cta h2, .cta .display, .cta .label { color: #fff; position: relative; }
.cta .label { color: rgba(255,255,255,.85); justify-content: center; }
.cta .label::before { background: rgba(255,255,255,.6); }
.cta .label .n { color: #fff; }
.cta .lead { color: rgba(255,255,255,.85); position: relative; margin-inline: auto; }
.cta .btn--ink { background: #fff; color: var(--rose-deep); }
.cta .btn--line { color: #fff !important; border-color: rgba(255,255,255,.45) !important; }
.cta .btn--line:hover { background: rgba(255,255,255,.12) !important; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 150px 0 0; position: relative; }
.page-hero .lead { margin-top: 22px; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.crumb a:hover { color: var(--rose-deep); }

/* ---------- Quote ---------- */
.quote { border-left: 3px solid var(--rose); padding-left: 30px; }
.quote p { font-family: 'Fraunces'; font-weight: 400; font-size: clamp(1.5rem,3vw,2.2rem); line-height: 1.25; max-width: 24ch; }

/* ---------- Forms ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; color: var(--ink-700); margin-bottom: 7px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 10px; background: var(--white);
  border: 1px solid var(--line); color: var(--ink); font-family: inherit; font-size: 15.5px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(188,127,123,.22); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { display: none; margin-top: 8px; padding: 13px 16px; border-radius: 10px; background: var(--sage-bg); color: var(--ink); font-size: 14.5px; border: 1px solid #D8E0CC; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 72px 0 32px; background: var(--paper-2); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; }
.foot-col h4 { font-family: 'Inter'; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 15px; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: var(--rose-deep); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13.5px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .07s; }
[data-reveal-delay="2"] { transition-delay: .14s; }
[data-reveal-delay="3"] { transition-delay: .21s; }
[data-reveal-delay="4"] { transition-delay: .28s; }

/* ---------- Mobile menu ---------- */
.mobile-menu { display: none; position: fixed; top: 78px; left: 0; right: 0; z-index: 55; background: var(--paper); border-bottom: 1px solid var(--line); padding: 14px var(--gut) 26px; }
.mobile-menu a { display: block; padding: 13px 4px; font-size: 18px; color: var(--ink); border-bottom: 1px solid var(--line); font-family: 'Fraunces'; font-weight: 500; }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.divider-flourish { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--rose); }
.divider-flourish::before, .divider-flourish::after { content: ""; height: 1px; width: 60px; background: var(--line); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { aspect-ratio: 5 / 4; max-height: 460px; }
  .split-2 { grid-template-columns: 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature__media { min-height: 300px; }
  .cols-5 { grid-template-columns: repeat(3,1fr); }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .cols-3 { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .cols-2, .cols-3, .cols-4, .cols-5 { grid-template-columns: 1fr 1fr; }
  .grid.cols-2 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .hide-sm { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
