/* page: homepage */
.page-homepage{
  --hp-ink:#211f1b;
  --hp-muted:#4a463e;
  --hp-line:#e5e2dd;
  --hp-blush:#f7edef;
  --hp-forest:#15201c;
  --hp-pink:#e6b7c1;
  --hp-offwhite:#faf8f5;
  --hp-gray:#727272;
  font-family:'Instrument Sans', sans-serif;
  color:var(--hp-ink);
  background:#fff;
  overflow-x:hidden;
}

.page-homepage *{ box-sizing:border-box; }
.page-homepage img{ max-width:100%; display:block; }
.page-homepage a{ text-decoration:none; color:inherit; }
.page-homepage button{ font-family:inherit; }

.page-homepage *:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* ---------- typography ---------- */
.hp-h1{
  font-family:'Playfair Display', serif;
  font-weight:400;
  font-size:68px;
  line-height:81.6px;
  letter-spacing:-0.7px;
  margin:0;
  text-align:center;
  color:var(--hp-ink);
}
.hp-h2{
  font-family:'Playfair Display', serif;
  font-weight:400;
  font-size:44px;
  line-height:55px;
  letter-spacing:0;
  margin:0;
  color:var(--hp-ink);
}
.hp-body-lg{
  font-family:'Instrument Sans', sans-serif;
  font-weight:400;
  font-size:19px;
  line-height:29.4px;
  color:var(--hp-muted);
  margin:0;
}
.hp-body{
  font-family:'Instrument Sans', sans-serif;
  font-weight:400;
  font-size:17px;
  line-height:26.3px;
  color:var(--hp-muted);
  margin:0;
}
@media (max-width:767.98px){
  .hp-h1{ font-size:34px; line-height:42.5px; letter-spacing:-0.3px; }
  .hp-h2{ font-size:26px; line-height:32.5px; }
  .hp-body-lg{ font-size:17px; line-height:26.3px; }
}
@media (min-width:768px) and (max-width:991.98px){
  .hp-h1{ font-size:52px; line-height:64px; }
  .hp-h2{ font-size:36px; line-height:46px; }
}

/* ---------- data-reveal (scroll-in, refinement of shared system) ---------- */
.page-homepage [data-reveal]{
  opacity:0.35;
  transform:scale(0.85);
  filter:blur(6px);
  transition:opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}
.page-homepage [data-reveal].is-visible,
.page-homepage [data-reveal].in-view{
  opacity:1;
  transform:scale(1);
  filter:blur(0);
}

/* ---------- HERO ---------- */
.hp-hero{ position:relative; }
.hp-hero-statement{
  padding:49px 80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
  max-width:960px;
  margin:0 auto;
}
.hp-hero-copy{ text-align:center; max-width:646px; }
.hp-hero-media{ position:relative; }
.hp-hero-img{
  width:100%;
  height:329px;
  object-fit:cover;
  --sx:50%; --sy:50%;
}
.hp-hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at var(--sx,50%) var(--sy,50%), rgba(168,85,247,0.20), transparent 60%);
  pointer-events:none;
}
.hp-hero-search-wrap{
  position:relative;
  z-index:2;
  margin-top:-40px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  padding:0 24px;
}
.hp-search{
  position:relative;
  display:flex;
  align-items:center;
  gap:16px;
  width:100%;
  max-width:824px;
  height:80px;
  background:#fff;
  border:1px solid var(--hp-line);
  border-radius:999px;
  padding:0 8px 0 32px;
}
.hp-search-icon{ display:flex; }
.hp-search-input{
  flex:1 1 0;
  border:none;
  outline:none;
  font-size:17px;
  line-height:26.3px;
  color:var(--hp-muted);
  background:transparent;
  min-width:0;
}
.hp-search-input::placeholder{ color:var(--hp-muted); }
.hp-search-btn{
  flex:0 0 auto;
  width:64px; height:64px;
  border-radius:999px;
  background:var(--hp-forest);
  border:none;
  display:flex; align-items:center; justify-content:center;
  transition:background 200ms ease-out, transform 200ms ease-out;
}
.hp-search-btn:hover{ background:var(--accent); }
.hp-search-feedback{
  display:none;
  position:absolute;
  left:32px; bottom:-24px;
  font-size:13px;
  color:#b3261e;
}
.hp-search-input:not(:placeholder-shown):invalid ~ .hp-search-feedback{ display:block; }
.hp-search-input:not(:placeholder-shown):invalid{ box-shadow:inset 0 0 0 1px #b3261e; }
.hp-search-input:not(:placeholder-shown):valid{ box-shadow:inset 0 0 0 1px #2f7d4f; }
.hp-search:has(.hp-search-input:not(:placeholder-shown):invalid){ border-color:#b3261e; }

.hp-chips{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; }
.hp-chip{
  border:1px solid var(--hp-line);
  background:#fff;
  color:var(--hp-muted);
  font-size:13px;
  line-height:18.2px;
  letter-spacing:0.3px;
  padding:9px 18px;
  border-radius:999px;
  transition:border-color 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}
.hp-chip:hover, .hp-chip.is-active{ border-color:var(--accent); color:var(--hp-ink); }

@media (max-width:767.98px){
  .hp-hero-statement{ padding:32px 24px; gap:16px; }
  .hp-hero-img{ height:260px; }
  .hp-search{ height:64px; padding:0 8px 0 24px; gap:12px; }
  .hp-search-btn{ width:48px; height:48px; }
  .hp-search-input{ font-size:15px; line-height:23.2px; }
  .hp-chips{ justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap; width:100%; padding-bottom:4px; }
}

/* ---------- HERO STRIP (horizontal scroll-snap) ---------- */
.hp-strip{ padding:64px; }
.hp-strip-row{
  display:flex;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
}
@media (prefers-reduced-motion:no-preference){ .hp-strip-row{ scroll-behavior:smooth; } }
@media (prefers-reduced-motion:reduce){ .hp-strip-row{ scroll-snap-type:none; } }
@media (hover:none){ .hp-strip-row{ scrollbar-width:none; } .hp-strip-row::-webkit-scrollbar{ width:0; height:0; } }
.hp-strip-row img{
  flex:1 1 0;
  min-width:140px;
  height:184px;
  object-fit:cover;
  scroll-snap-align:start;
}
@media (max-width:767.98px){
  .hp-strip{ padding:0 24px 32px; }
  .hp-strip-row img{ height:110px; min-width:76px; }
}

/* ---------- ABOUT ---------- */
.hp-about{ background:var(--hp-blush); }
.hp-about-inner{ display:flex; flex-wrap:wrap; }
.hp-about-text{
  flex:1 1 480px;
  padding:80px 80px 80px 240px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:24px;
}
.hp-about-media{ flex:1 1 480px; min-height:400px; }
.hp-about-media img{ width:100%; height:100%; min-height:400px; object-fit:cover; }
.hp-link-arrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding-top:8px;
  font-size:17px;
  line-height:26.3px;
  font-weight:500;
  color:var(--hp-ink);
  transition:gap 200ms ease-out, color 200ms ease-out;
}
/*.hp-link-arrow:hover{ gap:18px; color:var(--accent); }*/
@media (max-width:991.98px){
  .hp-about-text{ padding:64px 48px; }
}
@media (max-width:767.98px){
  .hp-about-text{ padding:32px 24px; }
  .hp-about-media{ min-height:300px; }
  .hp-about-media img{ min-height:300px; }
}

/* ---------- FEATURED COLLECTIONS ---------- */
.hp-featured{ padding:104px 240px; }
.hp-featured-header{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:40px;
}
.hp-link-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:500;
  letter-spacing:1px;
  color:var(--hp-gray);
  transition:color 200ms ease-out, gap 200ms ease-out;
}
.hp-link-label:hover{ color:var(--hp-ink); gap:12px; }

.hp-carousel{ position:relative; display:flex; align-items:center; gap:8px; }
.hp-featured-row{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
  flex:1 1 auto;
}
@media (prefers-reduced-motion:no-preference){ .hp-featured-row{ scroll-behavior:smooth; } }
@media (prefers-reduced-motion:reduce){ .hp-featured-row{ scroll-snap-type:none; } }
@media (hover:none){ .hp-featured-row{ scrollbar-width:none; } .hp-featured-row::-webkit-scrollbar{ height:0; } }

.hp-collection-card{
  position:relative;
  flex:0 0 clamp(157.5px, 30vw, 348px);
  height:460px;
  border:1px solid var(--hp-line);
  overflow:hidden;
  scroll-snap-align:start;
  perspective:900px;
  transform-style:preserve-3d;
}
.hp-collection-card img{ width:100%; height:100%; object-fit:cover; }
.hp-collection-overlay{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 45%);
}
.hp-collection-details{
  position:absolute; left:0; right:0; bottom:0;
  padding:24px;
  display:flex; flex-direction:column; gap:6px;
}
.hp-card-title{ margin:0; font-size:13px; font-weight:500; color:#fff; }
.hp-card-caption{ margin:0; font-size:14px; color:var(--hp-line); }

.hp-carousel-arrow{
  flex:0 0 auto;
  width:48px; height:48px;
  border-radius:999px;
  background:var(--hp-forest);
  border:1px solid var(--hp-line);
  backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  transition:background 200ms ease-out, transform 200ms ease-out;
}
.hp-carousel-arrow:hover{ background:var(--accent); }

@media (max-width:767.98px){
  .hp-featured{ padding:32px 24px; }
  .hp-carousel-arrow{ display:none; }
}
@media (min-width:768px) and (max-width:991.98px){
  .hp-featured{ padding:64px 48px; }
}

/* ---------- RECENTLY ADDED ---------- */
.hp-recent{ padding-top:104px; background:#fff; }
.hp-recent-header{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:16px;
  padding:0 240px; margin-bottom:56px;
}
.hp-recent-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media (min-width:768px){
  .hp-recent-grid{ grid-template-columns:repeat(4,1fr); gap:0; }
}
.hp-recent-panel{ position:relative; }
.hp-recent-media{ position:relative; height:200px; }
.hp-recent-media img{ width:100%; height:100%; object-fit:cover; }
.hp-recent-overlay{ display:none; }
.hp-recent-caption{ padding-top:8px; }
.hp-recent-title{ margin:0 0 4px; font-family:'Instrument Sans', sans-serif; font-weight:500; font-size:17px; line-height:26.3px; color:var(--hp-ink); }
.hp-recent-label{ margin:0; font-size:14px; line-height:21px; color:var(--hp-muted); }

@media (min-width:768px){
  .hp-recent-panel{ padding:40px; display:flex; flex-direction:column; justify-content:flex-end; }
  .hp-recent-media{ position:absolute; inset:0; height:auto; }
  .hp-recent-overlay{
    display:block; position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.72) 100%);
  }
  .hp-recent-caption{ position:relative; z-index:2; padding-top:0; }
  .hp-recent-title{ font-family:'Playfair Display', serif; font-weight:400; font-size:30px; line-height:37.5px; color:#fff; margin-bottom:8px; }
  .hp-recent-label{ color:rgba(255,255,255,0.75); font-weight:500; letter-spacing:1px; }
}
@media (max-width:767.98px){
  .hp-recent-header{ padding:0 24px; margin-bottom:24px; }
  .hp-recent{ padding-top:32px; }
}
@media (min-width:768px) and (max-width:991.98px){
  .hp-recent-header{ padding:0 48px; }
}

/* ---------- IMAGE COSTS ---------- */
.hp-costs{ padding:104px 240px; display:flex; flex-direction:column; align-items:center; gap:64px; }
.hp-costs-header{ display:flex; flex-direction:column; align-items:center; gap:24px; max-width:520px; text-align:center; }
.hp-costs-header .hp-body-lg{ text-align:center; }
.hp-tiers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  width:100%;
}
.hp-tier img{ width:100%; height:360px; object-fit:cover; }
.hp-tier-body{ padding-top:16px; display:flex; flex-direction:column; gap:12px; }
.hp-tier-h3{ font-family:'Playfair Display', serif; font-weight:400; font-size:30px; line-height:37.5px; margin:0; color:var(--hp-ink); }
.hp-tier-price{ font-size:17px; line-height:26.3px; font-weight:500; margin:0; color:var(--hp-ink); }

@media (max-width:991.98px){
  .hp-costs{ padding:64px 48px; }
}
@media (max-width:767.98px){
  .hp-costs{ padding:32px 24px; gap:24px; }
  .hp-tiers{ grid-template-columns:1fr; }
  .hp-tier img{ height:200px; }
  .hp-tier-h3{ font-size:21px; line-height:27.3px; }
}

/* ---------- FAQ ---------- */
.hp-faq{ background:var(--hp-blush); padding:104px 240px; }
.hp-faq-inner{ display:flex; flex-wrap:wrap; gap:64px; }
.hp-faq-heading{ flex:1 1 380px; display:flex; flex-direction:column; gap:24px; }
.hp-faq-list{ flex:2 1 500px; }
.hp-faq-item{ padding:32px 0; border-top:1px solid var(--hp-line); }
.hp-faq-list .hp-faq-item:last-child{ border-bottom:1px solid var(--hp-line); }
.hp-faq-q{ margin:0 0 12px; font-size:17px; line-height:26.3px; font-weight:500; color:var(--hp-ink); }
.hp-faq-a{ margin:0; font-size:17px; line-height:26.3px; color:var(--hp-muted); }

@media (max-width:991.98px){
  .hp-faq{ padding:64px 48px; }
  .hp-faq-inner{ gap:32px; }
}
@media (max-width:767.98px){
  .hp-faq{ padding:32px 24px; }
}

/* ---------- HOW CREDITS WORK ---------- */
.hp-credits{ background:var(--hp-forest); display:flex; flex-wrap:wrap; }
.hp-credits-panel{
  flex:1 1 480px;
  background:#fff;
  padding:104px 104px 104px 240px;
  display:flex;
  flex-direction:column;
  gap:32px;
}
.hp-credits-panel .hp-body-lg{ color:rgba(74,70,62,0.72); }
.hp-credits-media{ flex:1 1 480px; min-height:400px; }
.hp-credits-media img{ width:100%; height:100%; min-height:400px; object-fit:cover; }
.hp-steps{ display:flex; flex-direction:column; }
.hp-step{ display:flex; gap:32px; padding:24px 0; border-top:1px solid var(--hp-line); }
.hp-step-rule{ border-top:1px solid var(--hp-line); }
.hp-step-num{ font-size:13px; font-weight:500; letter-spacing:1px; color:rgba(33,31,27,0.55); flex:0 0 auto; }
.hp-step-text{ display:flex; flex-direction:column; gap:10px; }
.hp-step-title{ margin:0; font-size:17px; line-height:26.3px; font-weight:500; color:var(--hp-ink); }
.hp-step-text .hp-body{ color:rgba(74,70,62,0.72); }

@media (max-width:991.98px){
  .hp-credits-panel{ padding:64px 48px; }
}
@media (max-width:767.98px){
  .hp-credits-panel{ padding:32px 24px; gap:24px; }
  .hp-credits-media{ min-height:320px; }
  .hp-credits-media img{ min-height:320px; }
}

/* ---------- ACTION / CTA ---------- */
.hp-action{
  position:relative;
  padding:80px 120px;
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  overflow:hidden;
}
.hp-action-overlay{ position:absolute; inset:0; background:var(--hp-forest); opacity:0.65; }
.hp-action-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:12px; max-width:1680px; }
.hp-action-heading{ color:var(--hp-offwhite); text-align:center; }
.hp-action-copy{ color:var(--hp-line); text-align:center; max-width:760px; }

.hp-btn-primary{
  position:relative;
  margin-top:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:17px 30px;
  background:var(--hp-pink);
  color:var(--hp-ink);
  font-size:16px;
  font-weight:500;
  line-height:22.4px;
  border-radius:999px;
  border:none;
  transition:background 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out;
}
.hp-btn-primary:hover{ background:var(--accent); color:#fff; box-shadow:0 8px 24px rgba(168,85,247,0.35); }
.hp-btn-trace{
  position:absolute; inset:0;
  width:100%; height:100%;
  pointer-events:none;
  overflow:visible;
}
.hp-btn-trace rect{
  fill:none;
  stroke:var(--accent);
  stroke-width:2;
  stroke-dasharray:400;
  stroke-dashoffset:400;
}
.hp-btn-primary.is-tracing .hp-btn-trace rect{
  animation:homepage-hp-trace 650ms ease-out;
}
@keyframes homepage-hp-trace{
  to{ stroke-dashoffset:0; }
}

@media (max-width:991.98px){
  .hp-action{ padding:64px 48px; }
}
@media (max-width:767.98px){
  .hp-action{ padding:56px 24px; }
  .hp-action-copy{ max-width:100%; }
}

/* ---------- tilt cards ---------- */
.tilt-card{ transition:transform 400ms ease-out; will-change:transform; }

/* ---------- magnetic elements ---------- */
.magnetic{ transition:transform 200ms ease-out; will-change:transform; display:inline-flex; }

/* page: component library */
.page-component-library {
  --cl-pink: #e6b7c1;
  --cl-dark: #211f1b;
  --cl-surface: #15201c;
  --cl-muted: #4a463e;
  --cl-line: #e5e2dd;
  --cl-field: #f7edef;
  --cl-offwhite: #faf8f5;
  --cl-fafafa: #fafafa;
  --cl-error: #df3f3f;
  --cl-success: #47b147;
  background: #ffffff;
  color: var(--cl-dark);
  font-family: 'Instrument Sans', sans-serif;
  overflow-x: hidden;
}

.page-component-library .cl-shell { max-width: 1400px; padding: 48px 24px 96px; }

.page-component-library h1,
.page-component-library h2,
.page-component-library h3 { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--cl-dark); }

.page-component-library .cl-intro h1 { font-size: 49px; line-height: 1.15; margin-bottom: 8px; }

.page-component-library .cl-section { padding-block: 48px; border-bottom: 1px solid var(--cl-line); }
.page-component-library .cl-section:last-child { border-bottom: none; }
.page-component-library .cl-section h2 { font-size: 31px; margin-bottom: 24px; }
.page-component-library .cl-subhead { font-size: 16px; font-weight: 500; color: var(--cl-muted); margin: 24px 0 16px; text-transform: uppercase; letter-spacing: .5px; }

.page-component-library .cl-row { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.page-component-library .cl-row-top { align-items: flex-start; }
.page-component-library .cl-demo { display: flex; flex-direction: column; gap: 10px; }
.page-component-library .cl-demo-label { font-size: 12px; font-weight: 500; letter-spacing: .3px; color: var(--cl-muted); }
.page-component-library .cl-strong { font-weight: 500; color: var(--cl-dark); }
.page-component-library .cl-muted { color: var(--cl-muted); }
.page-component-library .cl-eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 1px; color: var(--cl-muted); }

.page-component-library [data-reveal] {
  opacity: .35; transform: scale(.85); filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}
.page-component-library [data-reveal].is-visible,
.page-component-library [data-reveal].revealed { opacity: 1; transform: scale(1) translateX(0); filter: blur(0); }

/* horizontal scroll rows */
.page-component-library .cl-hscroll {
  display: flex; gap: 40px; overflow-x: auto; overflow-y: hidden;
  overscroll-behavior-x: contain; scroll-snap-type: x mandatory; padding-bottom: 12px;
}
.page-component-library .cl-hscroll > * { scroll-snap-align: start; flex: 0 0 auto; }
@media (prefers-reduced-motion: no-preference) { .page-component-library .cl-hscroll { scroll-behavior: smooth; } }
@media (prefers-reduced-motion: reduce) { .page-component-library .cl-hscroll { scroll-snap-type: none; } }
@media (hover: none) { .page-component-library .cl-hscroll { scrollbar-width: none; } .page-component-library .cl-hscroll::-webkit-scrollbar { width: 0; height: 0; } }

/* focus ring */
.page-component-library a:focus-visible,
.page-component-library button:focus-visible,
.page-component-library input:focus-visible,
.page-component-library select:focus-visible,
.page-component-library textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* buttons */
.page-component-library .cl-btn-primary {
  border: none; border-radius: 999px; padding: 17px 30px;
  background: var(--cl-pink); color: var(--cl-dark);
  font: 500 16px/22.4px 'Instrument Sans', sans-serif;
  cursor: pointer; position: relative; overflow: visible;
  transition: background 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}
.page-component-library .cl-btn-primary:hover,
.page-component-library .cl-btn-primary.cl-is-hover { background: var(--cl-dark); color: var(--cl-pink); }
.page-component-library .cl-cta-trace { position: absolute; inset: -2px; pointer-events: none; }
.page-component-library .cl-cta-trace rect { fill: none; stroke: var(--accent); stroke-width: 2; }

/* footer preview */
.page-component-library .cl-footer-preview { background: var(--cl-surface); border-radius: 8px; padding: 48px 40px 32px; color: #fff; }
.page-component-library .cl-footer-top { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; }
.page-component-library .cl-footer-brand { max-width: 420px; display: flex; flex-direction: column; gap: 20px; }
.page-component-library .cl-wordmark { font-family: 'Playfair Display', serif; font-size: 17px; letter-spacing: 4.1px; margin: 0; }
.page-component-library .cl-footer-copy { color: rgba(255,255,255,.7); font-size: 17px; line-height: 26.3px; margin: 0; }
.page-component-library .cl-footer-address { color: rgba(255,255,255,.55); font-size: 14px; line-height: 21px; margin: 0; }
.page-component-library .cl-footer-columns { display: flex; gap: 96px; flex-wrap: wrap; }
.page-component-library .cl-footer-column { display: flex; flex-direction: column; gap: 12px; }
.page-component-library .cl-footer-meta { font-size: 13px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,.55); }
.page-component-library .cl-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.page-component-library .cl-footer-links-row { display: flex; flex-direction: row; gap: 24px; }
.page-component-library .cl-footer-links a,
.page-component-library .cl-footer-links-row a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 17px; transition: color 200ms ease-out, transform 200ms ease-out; display: inline-block; }
.page-component-library .cl-footer-links a:hover,
.page-component-library .cl-footer-links-row a:hover { color: #fff; }
.page-component-library .cl-hairline { display: block; width: 100%; height: 1px; margin: 40px 0; opacity: .5; }
.page-component-library .cl-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.page-component-library .cl-footer-bottom-mobile { flex-direction: column; align-items: flex-start; }
.page-component-library .cl-footer-legal { display: flex; gap: 32px; align-items: center; font-size: 14px; flex-wrap: wrap; }
.page-component-library .cl-footer-legal span { color: rgba(255,255,255,.55); }
.page-component-library .cl-footer-legal a { color: rgba(255,255,255,.85); text-decoration: none; transition: color 200ms ease-out; }
.page-component-library .cl-footer-legal a:hover { color: #fff; }
.page-component-library .cl-payment-logos { height: 26px; width: auto; object-fit: contain; }
.page-component-library .cl-footer-preview-mobile { max-width: 375px; display: flex; flex-direction: column; gap: 32px; }

/* currency selector */
.page-component-library .cl-currency-selector {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 999px; border: 1px solid var(--cl-line); background: #fff;
  font-size: 13px; letter-spacing: .3px; color: var(--cl-dark); cursor: pointer;
  transition: border-color 200ms ease-out, transform 200ms ease-out;
}
.page-component-library .cl-currency-selector:hover { border-color: var(--cl-dark); }

/* link arrow */
.page-component-library .cl-link-arrow { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--cl-dark); font-weight: 500; font-size: 17px; padding: 8px 0; transition: gap 200ms ease-out, color 200ms ease-out; }
.page-component-library .cl-link-arrow:hover { gap: 18px; color: var(--cl-muted); }

/* collection card */
.page-component-library .cl-collection-card { position: relative; width: 348px; height: 460px; border: 1px solid var(--cl-line); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; transition: transform 300ms ease-out; }
.page-component-library .cl-collection-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-component-library .cl-collection-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #000000cc 0%, #00000000 45%); }
.page-component-library .cl-collection-details { position: relative; z-index: 1; padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.page-component-library .cl-collection-title { color: #fff; font-size: 13px; font-weight: 500; margin: 0; }
.page-component-library .cl-collection-count { color: #e5e2dd; font-size: 14px; margin: 0; }

.page-component-library .cl-carousel-arrows { display: flex; gap: 12px; align-self: center; }
.page-component-library .cl-carousel-arrow { width: 48px; height: 48px; border-radius: 999px; background: var(--cl-surface); border: 1px solid var(--cl-line); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 200ms ease-out, transform 200ms ease-out; }
.page-component-library .cl-carousel-arrow:hover { background: #24322c; }

/* loyalty tier */
.page-component-library .cl-tier-card { width: 340px; background: #fff; border: 1px solid var(--cl-line); border-radius: 16px; padding: 32px; opacity: .95; display: flex; flex-direction: column; gap: 24px; transition: transform 300ms ease-out, box-shadow 300ms ease-out; }
.page-component-library .cl-tier-card:hover { transform: translateY(-4px); }
.page-component-library .cl-tier-featured { border: 1px solid var(--cl-pink); box-shadow: 0 16px 32px -4px #15201c0f; opacity: 1; padding: 32px 48px; width: 380px; }
.page-component-library .cl-tier-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.page-component-library .cl-tier-heading h3 { font-size: 24px; margin: 0 0 8px; }
.page-component-library .cl-tier-featured .cl-tier-heading h3 { font-size: 30px; }
.page-component-library .cl-tier-caption { font-size: 14px; color: var(--cl-muted); margin: 0; }
.page-component-library .cl-tier-caption-lg { font-size: 19px; }
.page-component-library .cl-tier-badge { background: var(--cl-pink); color: var(--cl-dark); font-size: 12px; font-weight: 500; letter-spacing: .2px; border-radius: 999px; padding: 6px 14px; white-space: nowrap; }
.page-component-library .cl-tier-figure { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 56px; margin: 0; }
.page-component-library .cl-tier-figure-lg { font-size: 68px; font-weight: 400; letter-spacing: -.7px; }

/* blocks */
.page-component-library .cl-panel { position: relative; width: 480px; height: 560px; overflow: hidden; padding: 40px; display: flex; align-items: flex-end; transition: transform 300ms ease-out; }
.page-component-library .cl-panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-component-library .cl-panel-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, #00000000 0%, #00000059 55%, #000000b8 100%); }
.page-component-library .cl-panel-caption { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; }
.page-component-library .cl-panel-caption h3 { color: #fff; font-size: 30px; margin: 0; }
.page-component-library .cl-panel-caption .cl-eyebrow { color: rgba(255,255,255,.75); }

.page-component-library .cl-tier-column { width: 464px; display: flex; flex-direction: column; gap: 24px; }
.page-component-library .cl-tier-column-img { width: 100%; height: 300px; object-fit: cover; }
.page-component-library .cl-tier-column-body { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; }
.page-component-library .cl-tier-column-body h3 { font-size: 30px; margin: 0; }

.page-component-library .cl-faq-item { width: 400px; padding-block: 32px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--cl-line); }
.page-component-library .cl-faq-item p { margin: 0; font-size: 17px; line-height: 26.3px; }

.page-component-library .cl-credits-step { width: 340px; display: flex; gap: 32px; align-items: flex-start; }
.page-component-library .cl-step-num { font-size: 13px; font-weight: 500; letter-spacing: 1px; color: rgba(33,31,27,.55); }
.page-component-library .cl-credits-step p { margin: 0; }
.page-component-library .cl-credits-step p + p { margin-top: 10px; }

/* field */
.page-component-library .cl-field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.page-component-library .cl-field-demo { display: flex; flex-direction: column; gap: 8px; }
.page-component-library .cl-field-label { font-size: 13px; font-weight: 500; color: var(--cl-muted); }
.page-component-library .cl-field-box { background: var(--cl-field); border-radius: 999px; display: flex; align-items: center; padding: 0 20px; height: 56px; gap: 12px; border: 1px solid transparent; transition: border-color 200ms ease-out; }
.page-component-library .cl-textarea-box { border-radius: 16px; height: auto; padding: 18px 20px 0; align-items: flex-start; }
.page-component-library .cl-select-box { position: relative; padding-right: 44px; }
.page-component-library .cl-field-focus { border-color: #211f1c; }
.page-component-library .cl-field-error { border-color: var(--cl-error); }
.page-component-library .cl-field-input { border: none; background: transparent; width: 100%; font: 400 17px/26.3px 'Instrument Sans', sans-serif; color: var(--cl-dark); outline: none; }
.page-component-library .cl-field-input::placeholder { color: rgba(33,31,27,.55); }
.page-component-library .cl-field-input.cl-filled { color: var(--cl-dark); }
.page-component-library textarea.cl-field-input { resize: vertical; min-height: 108px; padding-bottom: 18px; }
.page-component-library select.cl-select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.page-component-library .cl-select-chevron { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.page-component-library .cl-field-feedback { color: var(--cl-error); font-size: 14px; margin: 0; }
.page-component-library .cl-eye-toggle { background: none; border: none; color: var(--cl-dark); display: flex; align-items: center; cursor: pointer; padding: 4px; transition: color 200ms ease-out; }
.page-component-library .cl-eye-toggle:hover { color: var(--cl-muted); }

/* form parts */
.page-component-library .cl-checkbox-set { display: flex; flex-direction: column; gap: 16px; }
.page-component-library .cl-checkbox { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--cl-muted); cursor: pointer; }
.page-component-library .cl-checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.page-component-library .cl-checkbox-box { width: 20px; height: 20px; border-radius: 4px; border: 1px solid var(--cl-line); background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 200ms ease-out, border-color 200ms ease-out; }
.page-component-library .cl-checkbox input:checked + .cl-checkbox-box { background: var(--cl-dark); border-color: var(--cl-dark); }
.page-component-library .cl-checkbox input:focus-visible + .cl-checkbox-box { outline: 2px solid var(--accent); outline-offset: 2px; }
.page-component-library .cl-checkbox-box-lg { width: 24px; height: 24px; }
.page-component-library .cl-recaptcha { display: flex; align-items: center; gap: 12px; background: var(--cl-offwhite); border: 1px solid var(--cl-line); border-radius: 4px; padding: 16px; }
.page-component-library .cl-recaptcha-check { margin-right: 8px; }
.page-component-library .cl-recaptcha-mark { display: flex; flex-direction: column; gap: 2px; align-items: center; font-size: 14px; color: var(--cl-muted); border-left: 1px solid var(--cl-line); padding-left: 16px; }

/* archive parts */
.page-component-library .cl-chip-cost-set { display: flex; gap: 12px; }
.page-component-library .cl-chip-cost { background: var(--cl-pink); color: var(--cl-dark); font-size: 14px; border-radius: 999px; padding: 6px 10px; }
.page-component-library .cl-archive-card { width: 348px; display: flex; flex-direction: column; gap: 16px; transition: transform 300ms ease-out; }
.page-component-library .cl-archive-media { position: relative; }
.page-component-library .cl-archive-media img { width: 100%; height: 260px; object-fit: cover; display: block; }
.page-component-library .cl-chip-cost-overlay { position: absolute; top: 12px; left: 12px; }
.page-component-library .cl-archive-meta p { margin: 0; }
.page-component-library .cl-archive-meta p + p { margin-top: 6px; }

/* sidebar */
.page-component-library .cl-sidebar { width: 280px; display: flex; flex-direction: column; gap: 4px; }
.page-component-library .cl-sidebar-title { font-size: 13px; font-weight: 500; color: var(--cl-muted); }
.page-component-library .cl-sidebar-item { padding: 14px 16px; border-radius: 4px; text-decoration: none; color: var(--cl-muted); font-size: 17px; transition: background 200ms ease-out, color 200ms ease-out; }
.page-component-library .cl-sidebar-item:hover { background: rgba(0,0,0,.03); }
.page-component-library .cl-sidebar-active { background: var(--cl-field); color: var(--cl-dark); font-weight: 500; }

/* nav preview */
.page-component-library .cl-navbar-preview { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 20px 32px; border: 1px solid var(--cl-line); border-radius: 8px; margin-bottom: 24px; }
.page-component-library .cl-navbar-menu { display: flex; gap: 8px; flex-wrap: wrap; }
.page-component-library .cl-nav-link { padding: 10px 16px; color: var(--cl-muted); text-decoration: none; font-size: 14px; border-radius: 4px; transition: color 200ms ease-out, background 200ms ease-out; }
.page-component-library .cl-nav-link:hover { color: var(--cl-dark); background: rgba(0,0,0,.03); }
.page-component-library .cl-wordmark-nav { font-size: 17px; letter-spacing: 4.1px; color: var(--cl-dark); }
.page-component-library .cl-navbar-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.page-component-library .cl-basket { width: 40px; height: 40px; border-radius: 999px; background: var(--cl-surface); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: transform 200ms ease-out; }
.page-component-library .cl-basket-sm { width: 34px; height: 34px; }
.page-component-library .cl-credits-balance { background: var(--cl-field); color: var(--cl-dark); font-size: 13px; font-weight: 500; padding: 0 18px; height: 40px; display: inline-flex; align-items: center; border-radius: 999px; }
.page-component-library .cl-credits-balance-sm { height: 34px; font-size: 12px; padding: 0 12px; }
.page-component-library .cl-signup-btn { background: var(--cl-pink); color: var(--cl-dark); font-size: 13px; font-weight: 500; padding: 0 20px; height: 40px; display: inline-flex; align-items: center; border-radius: 999px; text-decoration: none; transition: background 200ms ease-out; }
.page-component-library .cl-signup-btn:hover { background: var(--cl-dark); color: var(--cl-pink); }

/* mobile chrome */
.page-component-library .cl-mobilenav { width: 375px; background: #fff; border: 1px solid var(--cl-line); border-radius: 8px; padding: 0 20px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.page-component-library .cl-hamburger { display: flex; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.page-component-library .cl-hamburger img { width: 20px; height: auto; }
.page-component-library .cl-wordmark-mobile { font-size: 12px; letter-spacing: 2.4px; margin: 0; }
.page-component-library .cl-mobilenav-actions { display: flex; align-items: center; gap: 8px; }

.page-component-library .cl-tabbar { width: 375px; background: #fff; border-radius: 999px; padding: 12px 24px; display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto; }
.page-component-library .cl-tab { padding: 10px 14px; border-radius: 999px; font-size: 15px; color: var(--cl-muted); white-space: nowrap; }
.page-component-library .cl-tab-active { background: var(--cl-field); color: var(--cl-dark); font-weight: 500; }

/* mark */
.page-component-library .cl-mark { width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.page-component-library .cl-mark-success { background: var(--cl-success); }
.page-component-library .cl-mark-error { background: var(--cl-error); }

/* modal */
.page-component-library .cl-modal .modal-content.cl-modal-content {
  border-radius: 16px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.9); backdrop-filter: blur(20px) saturate(160%);
  padding: 56px 64px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; position: relative;
}
.page-component-library .cl-modal .modal-dialog { transition: transform 300ms cubic-bezier(.22,.68,.18,1), opacity 300ms ease-out; transform: scale(.92) translateY(10px); opacity: 0; }
.page-component-library .cl-modal.show .modal-dialog { transform: scale(1) translateY(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .page-component-library .cl-modal .modal-dialog { transform: none; }
}
.page-component-library .cl-modal-content h3 { font-size: 30px; margin: 0; }
.page-component-library .cl-modal-backdrop-custom { background: rgba(5,6,9,.6); backdrop-filter: blur(4px); }
.page-component-library .modal-backdrop.show { opacity: 1; background: rgba(5,6,9,.6); backdrop-filter: blur(4px); }
.page-component-library .cl-close { width: 40px; height: 40px; border-radius: 999px; background: #fff; border: 2px solid var(--cl-line); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--cl-dark); transition: border-color 200ms ease-out, transform 200ms ease-out; position: absolute; top: 12px; right: 12px; }
.page-component-library .cl-close:hover { border-color: var(--cl-dark); }
.page-component-library .cl-close-mobile { width: 32px; height: 32px; position: static; }
.page-component-library .cl-row .cl-close,
.page-component-library .cl-row .cl-close-mobile { position: static; }
.page-component-library .cl-modal-mobile-preview { width: 327px; background: #fff; border-radius: 16px; padding: 40px 28px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; position: relative; border: 1px solid var(--cl-line); }
.page-component-library .cl-modal-mobile-preview h3 { font-size: 21px; margin: 0; }
.page-component-library .cl-modal-mobile-preview .cl-close-mobile { position: absolute; top: 12px; right: 12px; }

/* search */
.page-component-library .cl-search { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--cl-line); border-radius: 999px; padding: 0 8px 0 32px; height: 80px; color: var(--cl-muted); }
.page-component-library .cl-search input { flex: 1; border: none; outline: none; font: 400 17px/26.3px 'Instrument Sans', sans-serif; color: var(--cl-muted); }
.page-component-library .cl-search-go { width: 64px; height: 64px; border-radius: 999px; background: var(--cl-surface); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 200ms ease-out; flex-shrink: 0; }
.page-component-library .cl-search-mobile { height: 64px; padding: 0 8px 0 24px; max-width: 327px; }
.page-component-library .cl-search-go-sm { width: 48px; height: 48px; }

/* pagination */
.page-component-library .cl-pagination { display: flex; flex-direction: column; gap: 24px; padding: 40px; border: 1px solid var(--cl-line); border-radius: 8px; max-width: 540px; width: 100%; }
.page-component-library .cl-page-count { color: var(--cl-muted); font-size: 14px; }
.page-component-library .cl-pagination-controls { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.page-component-library .cl-pagination-controls-sm { gap: 6px; }
.page-component-library .cl-page-btn { width: 48px; height: 48px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font: 500 13px/18.2px 'Instrument Sans', sans-serif; letter-spacing: 1px; border: none; background: transparent; color: var(--cl-muted); cursor: pointer; transition: background 200ms ease-out, color 200ms ease-out, transform 200ms ease-out; }
.page-component-library .cl-page-btn-sm { width: 36px; height: 36px; font-size: 12px; }
.page-component-library .cl-page-nav { background: var(--cl-surface); border: 1px solid var(--cl-line); }
.page-component-library .cl-page-nav[disabled] { opacity: .35; cursor: not-allowed; }
.page-component-library .cl-page-nav img { filter: invert(1); }
.page-component-library .cl-page-active { background: var(--cl-dark); color: #fff; }
.page-component-library .cl-page-gap { cursor: default; }

/* payment accepted */
.page-component-library .cl-payment-accepted { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; letter-spacing: 1px; color: var(--cl-muted); }
.page-component-library .cl-visa { font-family: 'Instrument Sans', sans-serif; font-style: italic; font-weight: 700; font-size: 15px; color: #1a1f71; letter-spacing: .5px; }
.page-component-library .cl-mastercard { display: inline-flex; }
.page-component-library .cl-mastercard i { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }
.page-component-library .cl-mastercard i:first-child { background: #eb001b; margin-right: -6px; }
.page-component-library .cl-mastercard i:last-child { background: #f79e1b; opacity: .9; }

/* pack */
.page-component-library .cl-pack { border: 2px solid var(--cl-line); background: var(--cl-fafafa); padding: 32px; display: flex; flex-direction: column; gap: 24px; width: 420px; border-radius: 4px; transition: transform 300ms ease-out; }
.page-component-library .cl-pack-mobile { width: 214px; padding: 24px; gap: 16px; }
.page-component-library .cl-pack-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.page-component-library .cl-pack-head h3 { font-size: 30px; margin: 0; }
.page-component-library .cl-pack-mobile .cl-pack-head h3 { font-size: 21px; }
.page-component-library .cl-pack-badge { background: var(--cl-field); color: var(--cl-dark); font-size: 12px; font-weight: 500; letter-spacing: .2px; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.page-component-library .cl-pack-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 56px; margin: 0; }
.page-component-library .cl-pack-price-sm { font-size: 34px; }
.page-component-library .cl-pack-btn { width: 100%; }

/* credits input */
.page-component-library .cl-credits-input { display: flex; align-items: center; gap: 48px; background: #fff; border: 2px solid var(--cl-line); border-radius: 999px; padding: 8px 8px 8px 32px; flex-wrap: wrap; }
.page-component-library .cl-credits-field { display: flex; flex-direction: column; gap: 2px; }
.page-component-library .cl-credits-number { border: none; outline: none; font: 500 17px/26.3px 'Instrument Sans', sans-serif; width: 70px; color: var(--cl-dark); }
.page-component-library .cl-credits-amount { font: 500 17px/26.3px 'Instrument Sans', sans-serif; color: var(--cl-dark); }

/* chips */
.page-component-library .cl-chip-subject { border: 1px solid var(--cl-line); background: #fff; color: var(--cl-muted); border-radius: 999px; padding: 6px 13px; font-size: 13px; letter-spacing: .3px; cursor: pointer; transition: background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out; }
.page-component-library .cl-chip-active { background: var(--cl-surface); color: #fff; border-color: var(--cl-surface); }
.page-component-library .cl-chip-tag { display: inline-flex; align-items: center; border: 1px solid var(--cl-line); border-radius: 999px; padding: 6px 13px; font-size: 13px; color: var(--cl-muted); letter-spacing: .3px; }
.page-component-library .cl-chip-tag-more { background: var(--cl-surface); color: #fff; border-color: var(--cl-surface); }

/* tilt targets */
.page-component-library .cl-tilt { will-change: transform; transform-style: preserve-3d; }

/* responsive */
@media (max-width: 991px) {
  .page-component-library .cl-navbar-preview { justify-content: flex-start; }
  .page-component-library .cl-pagination { padding: 24px; }
}
@media (max-width: 575px) {
  .page-component-library .cl-intro h1 { font-size: 34px; }
  .page-component-library .cl-section h2 { font-size: 25px; }
  .page-component-library .cl-panel { width: 300px; height: 420px; padding: 24px; }
  .page-component-library .cl-tier-column { width: 300px; }
  .page-component-library .cl-collection-card { width: 280px; height: 380px; }
  .page-component-library .cl-tier-card { width: 280px; padding: 24px; }
  .page-component-library .cl-tier-featured { width: 300px; padding: 24px; }
  .page-component-library .cl-credits-input { padding: 16px; gap: 16px; }
}

/* page: Email - Enquiry received */
.page-email-enquiry-received {
  display: block;
}

.page-email-enquiry-received .email-preview {
  background: var(--bg);
  padding: 64px 16px;
  display: flex;
  justify-content: center;
}

.page-email-enquiry-received .email-wrapper {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}

/* ---------- Header ---------- */
.page-email-enquiry-received .email-header {
  background: var(--surface);
  padding: 23px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-email-enquiry-received .email-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26.7px;
  letter-spacing: 4.8px;
  color: #ffffff;
  text-align: center;
}

/* ---------- Image band ---------- */
.page-email-enquiry-received .email-image-band {
  background: #faf8f5;
  width: 100%;
}

.page-email-enquiry-received .email-hero-img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.page-email-enquiry-received .email-caption {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-email-enquiry-received .email-caption-text {
  margin: 0;
  font-family: "Arial", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0;
  color: #4a463e;
  text-align: center;
}

/* ---------- Content ---------- */
.page-email-enquiry-received .email-content {
  background: #ffffff;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-email-enquiry-received .email-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 429px;
  text-align: center;
}

.page-email-enquiry-received .email-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-email-enquiry-received .email-title {
  margin: 0;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.6px;
  letter-spacing: 0;
  color: var(--line);
  text-align: center;
}

.page-email-enquiry-received .email-body {
  margin: 0;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  letter-spacing: 0;
  color: #4a463e;
  text-align: center;
}

.page-email-enquiry-received .email-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--secondary);
  text-decoration: none;
  transition: transform 200ms ease-out, filter 200ms ease-out, box-shadow 200ms ease-out;
  will-change: transform;
}

.page-email-enquiry-received .email-btn:hover,
.page-email-enquiry-received .email-btn:focus-visible {
  filter: brightness(0.94);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.page-email-enquiry-received .email-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-email-enquiry-received .email-btn-label {
  font-family: "Arial", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 14.9px;
  letter-spacing: 0;
  color: var(--line);
  white-space: nowrap;
}

.page-email-enquiry-received .cta-trace {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-email-enquiry-received .cta-trace rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.page-email-enquiry-received .email-btn.is-tracing .cta-trace rect {
  animation: email-enquiry-received-email-enquiry-received-trace 650ms ease-out forwards;
}

@keyframes email-enquiry-received-email-enquiry-received-trace {
  to {
    stroke-dashoffset: 0;
  }
}

/* ---------- Footer ---------- */
.page-email-enquiry-received .email-footer {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-email-enquiry-received .email-footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22.7px;
  letter-spacing: 4.1px;
  color: #ffffff;
  white-space: nowrap;
}

.page-email-enquiry-received .email-footer-detail {
  font-style: normal;
  font-family: "Arial", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21.4px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.page-email-enquiry-received .email-footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease-out;
  display: inline-block;
}

.page-email-enquiry-received .email-footer-link:hover,
.page-email-enquiry-received .email-footer-link:focus-visible {
  color: #ffffff;
}

.page-email-enquiry-received .email-footer-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
  .page-email-enquiry-received .email-preview {
    padding: 48px 16px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 575.98px) {
  .page-email-enquiry-received .email-preview {
    padding: 32px 12px;
  }

  .page-email-enquiry-received .email-header {
    padding: 20px 24px;
  }

  .page-email-enquiry-received .email-logo {
    font-size: 17px;
    letter-spacing: 3.6px;
  }

  .page-email-enquiry-received .email-caption {
    padding: 12px 24px;
  }

  .page-email-enquiry-received .email-content {
    padding: 40px 20px;
  }

  .page-email-enquiry-received .email-title {
    font-size: 20px;
    line-height: 24px;
  }

  .page-email-enquiry-received .email-body {
    font-size: 15px;
    line-height: 22px;
  }

  .page-email-enquiry-received .email-btn {
    padding: 14px 28px;
  }

  .page-email-enquiry-received .email-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 16px;
  }

  .page-email-enquiry-received .email-footer-detail {
    text-align: center;
  }
}

/* page: Email - Reset password */
.page-email-reset-password {
  --erp-band-bg: #faf8f5;
  --erp-caption-color: #4a463e;
  --erp-body-color: #4a463e;
  --erp-title-color: #211f1b;
  background: var(--bg);
  padding: 32px 16px;
  display: flex;
  justify-content: center;
}

.page-email-reset-password .erp-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-email-reset-password .erp-card {
  width: 100%;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Header */
.page-email-reset-password .erp-header {
  background: var(--surface);
  padding: 23px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-email-reset-password .erp-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26.7px;
  letter-spacing: 4.8px;
  color: #ffffff;
  text-align: center;
}

/* Image band */
.page-email-reset-password .erp-image-band {
  background: var(--erp-band-bg);
  width: 100%;
  position: relative;
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-reset-password .erp-hero-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.page-email-reset-password .erp-caption {
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-email-reset-password .erp-caption span {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0;
  color: var(--erp-caption-color);
  text-align: center;
}

/* Content */
.page-email-reset-password .erp-content {
  background: #ffffff;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-reset-password .erp-text-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 429px;
  width: 100%;
}

.page-email-reset-password .erp-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.page-email-reset-password .erp-title {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.6px;
  letter-spacing: 0;
  color: var(--erp-title-color);
  text-align: center;
  margin: 0;
}

.page-email-reset-password .erp-body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  letter-spacing: 0;
  color: var(--erp-body-color);
  text-align: center;
  margin: 0;
}

/* Button / CTA */
.page-email-reset-password .erp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--secondary);
  text-decoration: none;
  cursor: pointer;
  transition: background 250ms ease-out, transform 200ms ease-out, box-shadow 250ms ease-out;
  outline-offset: 2px;
}

.page-email-reset-password .erp-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 18px rgba(168,85,247,0.25);
}

.page-email-reset-password .erp-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-email-reset-password .erp-btn-label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 14.9px;
  letter-spacing: 0;
  color: #211f1b;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-email-reset-password .erp-cta-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.page-email-reset-password .erp-cta-trace rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.page-email-reset-password .erp-cta.erp-cta-active .erp-cta-trace rect {
  animation: erp-trace 650ms ease-out;
}

@keyframes email-reset-password-email-reset-password-trace {
  to { stroke-dashoffset: 0; }
}

.page-email-reset-password .erp-cta.erp-cta-active .erp-cta-trace rect {
  animation-name: email-reset-password-email-reset-password-trace;
}

/* Footer */
.page-email-reset-password .erp-footer {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.page-email-reset-password .erp-footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22.7px;
  letter-spacing: 4.1px;
  color: #ffffff;
}

.page-email-reset-password .erp-footer-detail {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21.4px;
  letter-spacing: 0;
  color: rgba(255,255,255,0.7);
  text-align: right;
  font-style: normal;
}

/* data-reveal base state */
.page-email-reset-password [data-reveal] {
  opacity: 0.35;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-reset-password [data-reveal].is-revealed,
.page-email-reset-password [data-reveal].reveal-visible,
.page-email-reset-password [data-reveal].revealed {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Responsive */
@media (max-width: 767px) {
  .page-email-reset-password .erp-header,
  .page-email-reset-password .erp-caption,
  .page-email-reset-password .erp-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .page-email-reset-password .erp-content {
    padding: 32px 20px;
  }
  .page-email-reset-password .erp-footer {
    justify-content: center;
    text-align: center;
  }
  .page-email-reset-password .erp-footer-detail {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-email-reset-password {
    padding: 16px 8px;
  }
  .page-email-reset-password .erp-title {
    font-size: 20px;
    line-height: 24px;
  }
  .page-email-reset-password .erp-body {
    font-size: 14px;
    line-height: 21px;
  }
  .page-email-reset-password .erp-btn {
    padding: 14px 28px;
  }
}

/* page: Email - Order confirmation */
.page-email-order-confirmation {
  --eoc-line: #656565;
  background: var(--bg);
  padding: 48px 16px;
  display: flex;
  justify-content: center;
}

.page-email-order-confirmation .eoc-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.page-email-order-confirmation .eoc-card {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

/* ---------- header ---------- */
.page-email-order-confirmation .eoc-header {
  background: #15201c;
  padding: 23px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-email-order-confirmation .eoc-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26.7px;
  letter-spacing: 4.8px;
  color: #ffffff;
  text-align: center;
}

.page-email-order-confirmation .eoc-logo--footer {
  font-size: 17px;
  line-height: 22.7px;
  letter-spacing: 4.1px;
}

/* ---------- image band ---------- */
.page-email-order-confirmation .eoc-image-band {
  background: #faf8f5;
  width: 100%;
}

.page-email-order-confirmation .eoc-hero-img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.page-email-order-confirmation .eoc-caption {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-email-order-confirmation .eoc-caption-text {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  line-height: 19.5px;
  color: #4a463e;
  text-align: center;
}

/* ---------- body ---------- */
.page-email-order-confirmation .eoc-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  align-items: center;
}

.page-email-order-confirmation .eoc-intro {
  width: 100%;
  background: #ffffff;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.page-email-order-confirmation .eoc-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 429px;
}

.page-email-order-confirmation .eoc-title {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.6px;
  color: #211f1b;
}

.page-email-order-confirmation .eoc-copy {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  color: #4a463e;
}

.page-email-order-confirmation .eoc-btn-wrap {
  position: relative;
}

.page-email-order-confirmation .eoc-btn {
  position: relative;
  border: none;
  background: #e6b7c1;
  color: #211f1b;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 14.9px;
  padding: 16px 40px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 250ms ease-out, transform 250ms ease-out, box-shadow 250ms ease-out;
}

.page-email-order-confirmation .eoc-btn:hover {
  background: #f0c9d2;
  transform: translateY(-1px);
}

.page-email-order-confirmation .eoc-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-email-order-confirmation .eoc-btn-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.page-email-order-confirmation .eoc-btn-trace rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}

.page-email-order-confirmation .eoc-btn.is-clicked .eoc-btn-trace rect {
  animation: email-order-confirmation-eoc-border-trace 650ms ease-out forwards;
}

@keyframes email-order-confirmation-eoc-border-trace {
  to { stroke-dashoffset: 0; }
}

/* ---------- billing ---------- */
.page-email-order-confirmation .eoc-billing {
  width: 100%;
  max-width: 483px;
  padding: 24px 0;
  border-top: 1px solid #656565;
  border-bottom: 1px solid #656565;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.page-email-order-confirmation .eoc-billing-label {
  margin: 0;
  width: 100%;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.3px;
  color: #0e0e0e;
  text-align: center;
}

.page-email-order-confirmation .eoc-billing-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.page-email-order-confirmation .eoc-billing-field {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.3px;
  color: #656565;
  text-align: center;
}

/* ---------- order summary ---------- */
.page-email-order-confirmation .eoc-elements {
  width: 536px;
  max-width: calc(100% - 64px);
  background: #f5f5f5;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-email-order-confirmation .eoc-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-email-order-confirmation .eoc-line-text {
  flex: 1 1 auto;
  min-width: 0;
}

.page-email-order-confirmation .eoc-line-title {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #0e0e0e;
}

.page-email-order-confirmation .eoc-line-sub {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #656565;
}

.page-email-order-confirmation .eoc-line-price {
  flex: 0 0 auto;
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 27.6px;
  color: #0e0e0e;
  text-align: right;
}

.page-email-order-confirmation .eoc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #656565;
}

.page-email-order-confirmation .eoc-total-label {
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 50px;
  color: #0e0e0e;
}

.page-email-order-confirmation .eoc-total-price {
  font-family: "Instrument Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 50px;
  color: #0e0e0e;
  text-align: right;
}

/* ---------- footer ---------- */
.page-email-order-confirmation .eoc-footer {
  background: #15201c;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.page-email-order-confirmation .eoc-footer-detail {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21.4px;
  color: rgba(255,255,255,0.7);
  text-align: right;
}

/* ---------- reveal ---------- */
.page-email-order-confirmation [data-reveal] {
  opacity: 0.35;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-order-confirmation [data-reveal].is-visible,
.page-email-order-confirmation [data-reveal].in-view {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* ---------- responsive ---------- */
@media (max-width: 767px) {
  .page-email-order-confirmation .eoc-header,
  .page-email-order-confirmation .eoc-footer {
    padding: 20px 24px;
  }
  .page-email-order-confirmation .eoc-intro {
    padding: 32px 20px;
  }
  .page-email-order-confirmation .eoc-title {
    font-size: 20px;
    line-height: 24px;
  }
  .page-email-order-confirmation .eoc-copy {
    font-size: 15px;
  }
  .page-email-order-confirmation .eoc-elements {
    width: 100%;
  }
  .page-email-order-confirmation .eoc-total-label,
  .page-email-order-confirmation .eoc-total-price {
    font-size: 20px;
    line-height: 34px;
  }
  .page-email-order-confirmation .eoc-line-price {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .page-email-order-confirmation {
    padding: 24px 8px;
  }
  .page-email-order-confirmation .eoc-footer {
    justify-content: center;
    text-align: center;
  }
  .page-email-order-confirmation .eoc-footer-detail {
    text-align: center;
  }
  .page-email-order-confirmation .eoc-billing-row {
    flex-direction: column;
    gap: 4px;
  }
  .page-email-order-confirmation .eoc-line {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-email-order-confirmation .eoc-btn.is-clicked .eoc-btn-trace rect {
    animation: none;
  }
}

/* page: Email - Account created */
.page-email-account-created {
  --eac-cream: #faf8f5;
  --eac-caption: #4a463e;
  --eac-ink: #211f1b;
  background: var(--bg);
  padding: 48px 16px;
  display: flex;
  justify-content: center;
}

.page-email-account-created .eac-page {
  width: 100%;
  max-width: 600px;
}

.page-email-account-created .eac-email {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Top bar */
.page-email-account-created .eac-topbar {
  background: var(--surface);
  padding: 23px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-email-account-created .eac-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26.7px;
  letter-spacing: 4.8px;
  color: #ffffff;
  text-align: center;
}

/* Image band */
.page-email-account-created .eac-image-band {
  background: var(--eac-cream);
  opacity: 0.35;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-account-created .eac-image-band.is-visible,
.page-email-account-created .eac-image-band[data-reveal].is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.page-email-account-created .eac-hero-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.page-email-account-created .eac-caption {
  padding: 14px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-email-account-created .eac-caption p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0;
  color: var(--eac-caption);
  text-align: center;
}

/* Content */
.page-email-account-created .eac-content {
  background: #ffffff;
  padding: 48px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.35;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-account-created .eac-content.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.page-email-account-created .eac-text {
  max-width: 429px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.page-email-account-created .eac-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-email-account-created .eac-title {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.6px;
  color: var(--eac-ink);
}

.page-email-account-created .eac-body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  color: var(--eac-caption);
}

/* Button */
.page-email-account-created .eac-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--secondary);
  border-radius: 999px;
  text-decoration: none;
  transition: background 250ms ease-out, transform 200ms ease-out, box-shadow 250ms ease-out;
  will-change: transform;
}

.page-email-account-created .eac-btn span {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 14.9px;
  color: var(--eac-ink);
  white-space: nowrap;
}

.page-email-account-created .eac-btn:hover,
.page-email-account-created .eac-btn:focus-visible {
  background: #eec4cd;
  box-shadow: 0 6px 18px rgba(230,183,193,0.4);
}

.page-email-account-created .eac-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-email-account-created .eac-btn-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page-email-account-created .eac-btn-trace rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}

.page-email-account-created .eac-btn.is-clicked .eac-btn-trace rect {
  animation: email-account-created-eac-trace 650ms ease-out;
}

@keyframes email-account-created-eac-trace {
  0% { stroke-dashoffset: 100; opacity: 1; }
  85% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

/* Footer */
.page-email-account-created .eac-footer {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  opacity: 0.35;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-account-created .eac-footer.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.page-email-account-created .eac-footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22.7px;
  letter-spacing: 4.1px;
  color: #ffffff;
}

.page-email-account-created .eac-footer-detail {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21.4px;
  color: rgba(255,255,255,0.7);
  text-align: right;
  font-style: normal;
  margin: 0;
}

/* Motion-safe cursor helpers */
@media (prefers-reduced-motion: reduce) {
  .page-email-account-created .eac-btn,
  .page-email-account-created .eac-image-band,
  .page-email-account-created .eac-content,
  .page-email-account-created .eac-footer {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .page-email-account-created .eac-topbar,
  .page-email-account-created .eac-content,
  .page-email-account-created .eac-footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .page-email-account-created .eac-caption {
    padding-left: 28px;
    padding-right: 28px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .page-email-account-created {
    padding: 24px 8px;
  }
  .page-email-account-created .eac-topbar {
    padding: 18px 20px;
  }
  .page-email-account-created .eac-logo {
    font-size: 16px;
    letter-spacing: 3.5px;
  }
  .page-email-account-created .eac-caption {
    padding: 12px 20px;
  }
  .page-email-account-created .eac-content {
    padding: 36px 20px;
  }
  .page-email-account-created .eac-title {
    font-size: 20px;
    line-height: 24px;
  }
  .page-email-account-created .eac-body {
    font-size: 15px;
    line-height: 22px;
  }
  .page-email-account-created .eac-footer {
    padding: 32px 20px;
    justify-content: center;
    text-align: center;
  }
  .page-email-account-created .eac-footer-detail {
    text-align: center;
    width: 100%;
  }
}

/* page: Email - Confirm your email */
.page-email-confirm-your-email {
  display: block;
  width: 100%;
  background: var(--bg);
  padding: 48px 16px;
  box-sizing: border-box;
}

.page-email-confirm-your-email .email-preview-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.page-email-confirm-your-email .email-card {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Header bar */
.page-email-confirm-your-email .email-topbar {
  background: #15201c;
  padding: 23px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-email-confirm-your-email .email-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26.7px;
  letter-spacing: 4.8px;
  color: #ffffff;
  text-align: center;
}

/* Image band */
.page-email-confirm-your-email .email-image-band {
  background: #faf8f5;
  width: 100%;
}

.page-email-confirm-your-email .email-photo-frame {
  width: 100%;
  aspect-ratio: 6 / 1;
  overflow: hidden;
}

.page-email-confirm-your-email .email-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-email-confirm-your-email .email-caption {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-email-confirm-your-email .email-caption span {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  color: #4a463e;
}

/* Content card */
.page-email-confirm-your-email .email-body-card {
  background: #ffffff;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-email-confirm-your-email .email-text-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 429px;
  text-align: center;
}

.page-email-confirm-your-email .email-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-email-confirm-your-email .email-title {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.6px;
  color: #211f1b;
  margin: 0;
}

.page-email-confirm-your-email .email-copy {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  color: #4a463e;
  margin: 0;
}

/* Button */
.page-email-confirm-your-email .email-btn-confirm {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: #e6b7c1;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 220ms ease-out, transform 220ms ease-out, box-shadow 220ms ease-out;
  will-change: transform;
}

.page-email-confirm-your-email .email-btn-confirm:hover {
  background: #dba2ae;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.page-email-confirm-your-email .email-btn-confirm:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-email-confirm-your-email .email-btn-label {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 14.9px;
  color: #211f1b;
  white-space: nowrap;
}

.page-email-confirm-your-email .btn-trace-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.page-email-confirm-your-email .btn-trace-rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
}

.page-email-confirm-your-email .email-btn-confirm.is-tracing .btn-trace-rect {
  opacity: 1;
  transition: stroke-dashoffset 650ms ease-out;
  stroke-dashoffset: 0;
}

/* Footer bar */
.page-email-confirm-your-email .email-footerbar {
  background: #15201c;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.page-email-confirm-your-email .email-footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22.7px;
  letter-spacing: 4.1px;
  color: #ffffff;
}

.page-email-confirm-your-email .email-footer-detail {
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21.4px;
  color: rgba(255,255,255,0.7);
  text-align: right;
  margin: 0;
}

/* Reveal base state */
.page-email-confirm-your-email [data-reveal] {
  opacity: 0.35;
  transform: scale(0.85);
  filter: blur(6px);
  transition: opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

.page-email-confirm-your-email [data-reveal].is-visible,
.page-email-confirm-your-email [data-reveal].reveal-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

@media (max-width: 767px) {
  .page-email-confirm-your-email {
    padding: 24px 12px;
  }
  .page-email-confirm-your-email .email-topbar {
    padding: 20px 24px;
  }
  .page-email-confirm-your-email .email-caption {
    padding: 12px 24px;
  }
  .page-email-confirm-your-email .email-body-card {
    padding: 36px 20px;
  }
  .page-email-confirm-your-email .email-title {
    font-size: 20px;
    line-height: 24px;
  }
  .page-email-confirm-your-email .email-copy {
    font-size: 15px;
  }
  .page-email-confirm-your-email .email-footerbar {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-email-confirm-your-email .email-footer-detail {
    text-align: left;
  }
}

@media (max-width: 400px) {
  .page-email-confirm-your-email .email-btn-confirm {
    padding: 14px 28px;
  }
}

/* page: Components - Email */
.page-components-email {
  --ce-white: #ffffff;
  --ce-offwhite: #faf8f5;
  --ce-body-text: #4a463e;
  --ce-footer-detail: rgba(255,255,255,0.7);
  background: var(--bg);
  color: var(--text);
  padding-block: 64px 96px;
}

.page-components-email .ce-intro {
  margin-bottom: 48px;
  text-align: center;
}

.page-components-email h1 {
  font-family: "Playfair Display", serif;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.page-components-email .ce-lead {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.page-components-email .ce-group {
  margin-bottom: 64px;
  opacity: 1;
}

.page-components-email .ce-group:last-child {
  margin-bottom: 0;
}

.page-components-email .ce-group-title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.page-components-email .ce-mock {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Header */
.page-components-email .ce-header {
  background: var(--surface);
  padding: 23px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-components-email .ce-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26.7px;
  letter-spacing: 4.8px;
  color: var(--ce-white);
  text-align: center;
}

/* Body content */
.page-components-email .ce-body {
  background: var(--ce-white);
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-components-email .ce-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 429px;
  text-align: center;
}

.page-components-email .ce-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.page-components-email .ce-title {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
  color: var(--line);
  margin: 0;
}

.page-components-email .ce-copy {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.8px;
  color: var(--ce-body-text);
  margin: 0;
}

.page-components-email .ce-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  background: var(--secondary);
  text-decoration: none;
  transition: transform 200ms ease-out, background 200ms ease-out, box-shadow 200ms ease-out;
}

.page-components-email .ce-btn:hover,
.page-components-email .ce-btn:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.page-components-email .ce-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page-components-email .ce-btn-label {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 14.9px;
  color: var(--line);
  position: relative;
  z-index: 1;
}

.page-components-email .ce-btn-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.page-components-email .ce-btn-trace rect {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.page-components-email .ce-btn.is-tracing .ce-btn-trace rect {
  animation: components-email-ce-trace 650ms ease-out forwards;
}

@keyframes components-email-ce-trace {
  to { stroke-dashoffset: 0; }
}

/* Footer */
.page-components-email .ce-footer {
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.page-components-email .ce-logo--footer {
  font-size: 17px;
  line-height: 22.7px;
  letter-spacing: 4.1px;
  text-align: left;
}

.page-components-email .ce-footer-detail {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 21.4px;
  color: var(--ce-footer-detail);
  text-align: right;
  max-width: 184px;
  margin: 0;
}

/* Image band */
.page-components-email .ce-imageband {
  background: var(--ce-offwhite);
  display: flex;
  flex-direction: column;
}

.page-components-email .ce-band-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.page-components-email .ce-caption {
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-components-email .ce-caption-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  color: var(--ce-body-text);
  text-align: center;
}

/* Reveal defaults are handled globally, but ensure scale/blur base state doesn't affect layout */
.page-components-email [data-reveal] {
  will-change: opacity, transform, filter;
}

@media (max-width: 767px) {
  .page-components-email h1 { font-size: 31px; }
  .page-components-email .ce-footer {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .page-components-email .ce-footer-detail { text-align: left; }
}

@media (max-width: 575px) {
  .page-components-email { padding-block: 48px 64px; }
  .page-components-email .ce-header,
  .page-components-email .ce-footer { padding-inline: 24px; }
  .page-components-email .ce-body { padding: 32px 16px; }
  .page-components-email .ce-title { font-size: 20px; }
  .page-components-email .ce-copy { font-size: 15px; }
}

/* page: Invoice template */
.page-invoice-template .invoice-page-wrap{
  display:flex;
  justify-content:center;
  padding:64px 20px;
  background:var(--bg);
}

.page-invoice-template .invoice-sheet{
  width:100%;
  max-width:794px;
  background:#faf8f5;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* ---------- letterhead ---------- */
.page-invoice-template .invoice-letterhead{
  position:relative;
  width:100%;
  aspect-ratio:794/300;
  overflow:hidden;
}
.page-invoice-template .letterhead-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.page-invoice-template .letterhead-scrim{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(21,32,28,0.7216) 0%, rgba(21,32,28,0.1804) 55%, rgba(21,32,28,0.6196) 100%);
}
.page-invoice-template .letterhead-content{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  z-index:1;
}
.page-invoice-template .letterhead-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding:5.54% 7.05% 0;
  gap:16px;
}
.page-invoice-template .invoice-logo{
  font-family:"Playfair Display", serif;
  font-weight:400;
  font-size:22px;
  line-height:1.25;
  letter-spacing:5.3px;
  color:#ffffff;
  margin:0;
}
.page-invoice-template .invoice-ref{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:5px;
}
.page-invoice-template .invoice-ref-label{
  font-family:Arial, sans-serif;
  font-weight:700;
  font-size:11px;
  line-height:1.45;
  letter-spacing:1px;
  color:#ffffff;
  margin:0;
}
.page-invoice-template .invoice-ref-detail{
  font-family:Arial, sans-serif;
  font-weight:700;
  font-size:18px;
  line-height:1.45;
  color:#ffffff;
}
.page-invoice-template .letterhead-caption{
  padding:0 7.05% 3.27%;
}
.page-invoice-template .letterhead-caption p{
  font-family:Arial, sans-serif;
  font-weight:400;
  font-size:11px;
  line-height:1.45;
  color:#ffffff;
  margin:0;
}

/* ---------- body ---------- */
.page-invoice-template .invoice-body{
  padding:44px 56px 0;
}

.page-invoice-template .invoice-meta{
  display:flex;
  gap:48px;
  padding-bottom:40px;
}
.page-invoice-template .meta-col{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.page-invoice-template .meta-label{
  font-family:Arial, sans-serif;
  font-weight:700;
  font-size:11px;
  line-height:1.45;
  letter-spacing:1px;
  color:#4a463e;
}
.page-invoice-template .meta-detail{
  font-family:Arial, sans-serif;
  font-weight:400;
  font-size:12px;
  line-height:1.45;
  color:#4a463e;
  margin:0;
}

/* ---------- table ---------- */
.page-invoice-template .invoice-table-wrap{
  overflow-x:auto;
}
.page-invoice-template .invoice-table{
  width:100%;
  min-width:480px;
  border-collapse:collapse;
}
.page-invoice-template .invoice-table th{
  font-family:Arial, sans-serif;
  font-weight:700;
  font-size:11px;
  line-height:1.45;
  letter-spacing:1px;
  color:#4a463e;
  text-align:left;
  padding:0 0 12px;
  border-bottom:1px solid rgba(33,31,27,0.15);
}
.page-invoice-template .invoice-table th.col-amount,
.page-invoice-template .invoice-table td.col-amount{
  text-align:right;
}
.page-invoice-template .invoice-table td{
  font-family:Arial, sans-serif;
  font-weight:400;
  font-size:13px;
  line-height:1.45;
  color:var(--line);
  padding:18px 0;
  border-bottom:1px solid rgba(33,31,27,0.15);
}
.page-invoice-template .invoice-table td.cell-strong{
  font-weight:700;
}
.page-invoice-template .col-desc{ width:50%; }
.page-invoice-template .col-detail{ width:28%; }
.page-invoice-template .col-amount{ width:22%; }

/* ---------- totals ---------- */
.page-invoice-template .invoice-totals-wrap{
  padding-top:36px;
}
.page-invoice-template .invoice-totals{
  background:#f7edef;
  padding:28px 32px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.page-invoice-template .total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:Arial, sans-serif;
  font-weight:400;
  font-size:13px;
  line-height:1.45;
  color:#4a463e;
}
.page-invoice-template .total-row span:last-child{
  color:var(--line);
}
.page-invoice-template .total-rule{
  border-top:1px solid rgba(33,31,27,0.15);
  margin:4px 0;
}
.page-invoice-template .total-row--grand{
  font-family:Arial, sans-serif;
  font-weight:700;
  font-size:18px;
  line-height:1.45;
  color:var(--line);
}
.page-invoice-template .total-row--grand span{
  color:var(--line);
}

/* ---------- footer ---------- */
.page-invoice-template .invoice-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 56px 28px;
  margin-top:80px;
  gap:16px;
}
.page-invoice-template .invoice-footer p{
  font-family:Arial, sans-serif;
  font-weight:400;
  font-size:11px;
  line-height:1.45;
  color:#4a463e;
  margin:0;
}
.page-invoice-template .payment-logos{
  height:26px;
  width:160px;
  object-fit:contain;
}

/* ---------- closing strip ---------- */
.page-invoice-template .invoice-closing-strip{
  position:relative;
  width:100%;
  aspect-ratio:794/84;
  overflow:hidden;
}
.page-invoice-template .closing-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* ---------- reveal (base state defined globally, refine here) ---------- */
.page-invoice-template [data-reveal]{
  transition:opacity 450ms ease-out, transform 450ms ease-out, filter 450ms ease-out;
}

/* ---------- responsive ---------- */
@media (max-width:991px){
  .page-invoice-template .invoice-body{ padding:36px 40px 0; }
  .page-invoice-template .invoice-footer{ padding:0 40px 24px; margin-top:64px; }
}

@media (max-width:768px){
  .page-invoice-template .invoice-page-wrap{ padding:48px 16px; }
  .page-invoice-template .invoice-body{ padding:32px 24px 0; }
  .page-invoice-template .invoice-meta{ flex-wrap:wrap; gap:24px; padding-bottom:32px; }
  .page-invoice-template .meta-col{ flex:1 1 45%; }
  .page-invoice-template .invoice-footer{ padding:0 24px 20px; margin-top:56px; }
  .page-invoice-template .invoice-totals{ padding:24px 22px; }
}

@media (max-width:575px){
  .page-invoice-template .invoice-page-wrap{ padding:32px 8px; }
  .page-invoice-template .letterhead-top{ padding:6% 6% 0; }
  .page-invoice-template .invoice-logo{ font-size:17px; letter-spacing:3.5px; }
  .page-invoice-template .invoice-ref-detail{ font-size:15px; }
  .page-invoice-template .invoice-meta{ flex-direction:column; gap:20px; }
  .page-invoice-template .meta-col{ flex:1 1 100%; }
  .page-invoice-template .invoice-body{ padding:24px 16px 0; }
  .page-invoice-template .invoice-table th,
  .page-invoice-template .invoice-table td{ font-size:12px; padding:14px 4px; }
  .page-invoice-template .invoice-totals-wrap{ padding-top:24px; }
  .page-invoice-template .total-row--grand{ font-size:16px; }
  .page-invoice-template .invoice-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:0 16px 20px;
    margin-top:40px;
  }
}

/* page: homepage */
.page-homepage{
  --hp-ink:#211f1b;
  --hp-muted:#4a463e;
  --hp-line:#e5e2dd;
  --hp-blush:#f7edef;
  --hp-pink:#e6b7c1;
  --hp-dark:#15201c;
  --hp-white:#ffffff;
  background:var(--hp-white);
  color:var(--hp-ink);
  overflow-x:hidden;
}

.page-homepage .hp-container{padding-left:240px;padding-right:240px;}
@media (max-width:1200px){.page-homepage .hp-container{padding-left:120px;padding-right:120px;}}
@media (max-width:768px){.page-homepage .hp-container{padding-left:40px;padding-right:40px;}}
@media (max-width:576px){.page-homepage .hp-container{padding-left:20px;padding-right:20px;}}

.page-homepage .hp-section{padding-top:104px;padding-bottom:104px;}
@media (max-width:991px){.page-homepage .hp-section{padding-top:64px;padding-bottom:64px;}}
@media (max-width:576px){.page-homepage .hp-section{padding-top:48px;padding-bottom:48px;}}

.page-homepage .hp-muted{color:var(--hp-muted);}
.page-homepage .hp-center{text-align:center;}

/* Type scale */
.page-homepage .hp-h1{font-family:'Playfair Display',serif;font-weight:400;font-size:68px;line-height:81.6px;letter-spacing:-0.7px;margin:0;}
.page-homepage .hp-h2{font-family:'Playfair Display',serif;font-weight:400;font-size:44px;line-height:55px;margin:0;}
.page-homepage .hp-h3{font-family:'Playfair Display',serif;font-weight:400;font-size:30px;line-height:37.5px;margin:0;}
.page-homepage .hp-h4{font-family:'Playfair Display',serif;font-weight:600;font-size:24px;line-height:30px;margin:0;}
.page-homepage .hp-display{font-family:'Playfair Display',serif;font-weight:400;font-size:68px;line-height:81.6px;letter-spacing:-0.7px;margin:0;}
.page-homepage .hp-display-sm{font-family:'Playfair Display',serif;font-weight:700;font-size:56px;line-height:67.2px;margin:0;}
.page-homepage .hp-body-lg{font-family:'Instrument Sans',sans-serif;font-weight:400;font-size:19px;line-height:29.4px;margin:0;}
.page-homepage .hp-body{font-family:'Instrument Sans',sans-serif;font-weight:400;font-size:17px;line-height:26.3px;margin:0;}
.page-homepage .hp-body-strong{font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:17px;line-height:26.3px;margin:0;}
.page-homepage .hp-small-strong{font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:13px;line-height:18.2px;margin:0;}
.page-homepage .hp-caption{font-family:'Instrument Sans',sans-serif;font-weight:400;font-size:14px;line-height:21px;margin:0;}
.page-homepage .hp-label{font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:12px;line-height:16.8px;letter-spacing:0.2px;margin:0;}
.page-homepage .hp-label-strong{font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:13px;line-height:18.2px;letter-spacing:1px;margin:0;}
.page-homepage .hp-meta{font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:13px;line-height:18.2px;letter-spacing:1px;margin:0;}

@media (max-width:991px){
  .page-homepage .hp-h1{font-size:46px;line-height:1.15;}
  .page-homepage .hp-h2{font-size:34px;line-height:1.2;}
  .page-homepage .hp-display{font-size:48px;line-height:1.15;}
}
@media (max-width:576px){
  .page-homepage .hp-h1{font-size:34px;}
  .page-homepage .hp-h2{font-size:26px;}
  .page-homepage .hp-body-lg{font-size:16px;line-height:1.55;}
  .page-homepage .hp-display{font-size:38px;}
  .page-homepage .hp-display-sm{font-size:40px;line-height:1.15;}
}

/* focus ring */
.page-homepage a:focus-visible,
.page-homepage button:focus-visible,
.page-homepage input:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}
.page-homepage a,.page-homepage button,.page-homepage input{
  transition:background-color 220ms ease-out,border-color 220ms ease-out,color 220ms ease-out,transform 220ms ease-out,box-shadow 220ms ease-out;
}

/* ---------------- HERO ---------------- */
.page-homepage .hp-hero{padding-top:49px;padding-bottom:0;}
.page-homepage .hp-hero-lead{
  max-width:692px;margin:0 auto;text-align:center;
  display:flex;flex-direction:column;gap:16px;padding-bottom:49px;
}
.page-homepage .hp-hero-media{position:relative;padding-bottom:56px;}
.page-homepage .hp-hero-band{
  width:100%;height:329px;
  background:linear-gradient(135deg,#0d3b45,#1f6b74 45%,#c9d8c1 100%);
  position:relative;
}
@media (max-width:576px){.page-homepage .hp-hero-band{height:220px;}}

.page-homepage .hp-search{
  position:absolute;left:50%;bottom:0;transform:translate(-50%,50%);
  width:min(824px,90%);height:80px;background:var(--hp-white);
  border:1px solid var(--hp-line);border-radius:999px;
  display:flex;align-items:center;gap:16px;padding:0 8px 0 32px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:box-shadow 220ms ease-out;
}
.page-homepage .hp-search:hover{box-shadow:0 14px 36px rgba(0,0,0,0.12);}
.page-homepage .hp-search-icon{display:flex;flex-shrink:0;}
.page-homepage .hp-search-input{
  flex:1 1 0;border:none;outline:none;font-family:'Instrument Sans',sans-serif;
  font-size:17px;line-height:26.3px;color:var(--hp-muted);background:transparent;
}
.page-homepage .hp-search-btn{
  width:64px;height:64px;border-radius:999px;background:var(--hp-dark);border:none;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;cursor:pointer;
}
.page-homepage .hp-search-btn:hover{background:#1e2c26;}

.page-homepage .hp-chips{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center;
  margin-top:56px;
}
.page-homepage .hp-chip{
  padding:0 18px;height:36px;border-radius:999px;border:1px solid var(--hp-line);
  background:transparent;color:var(--hp-muted);font-family:'Instrument Sans',sans-serif;
  font-size:13px;line-height:18.2px;letter-spacing:0.3px;cursor:pointer;
}
.page-homepage .hp-chip:hover{background:var(--hp-blush);border-color:var(--hp-pink);color:var(--hp-ink);}

/* ---------------- HERO STRIP ---------------- */
.page-homepage .hp-strip-section{padding:64px;}
@media (max-width:768px){.page-homepage .hp-strip-section{padding:32px 20px;}}
.page-homepage .hp-strip-row{
  display:flex;gap:8px;overflow-x:auto;overscroll-behavior-x:contain;
  scroll-snap-type:x mandatory;
}
@media (prefers-reduced-motion:no-preference){.page-homepage .hp-strip-row{scroll-behavior:smooth;}}
@media (prefers-reduced-motion:reduce){.page-homepage .hp-strip-row{scroll-snap-type:none;}}
@media (hover:none){.page-homepage .hp-strip-row{scrollbar-width:none;}
  .page-homepage .hp-strip-row::-webkit-scrollbar{width:0;height:0;}}
.page-homepage .hp-strip-item{
  flex:0 0 217px;height:184px;scroll-snap-align:start;
}

/* ---------------- ABOUT ---------------- */
.page-homepage .hp-about-text{
  background:var(--hp-white);padding:80px 80px 80px 240px;
  display:flex;flex-direction:column;justify-content:center;gap:24px;min-height:650px;
}
@media (max-width:1200px){.page-homepage .hp-about-text{padding:64px 60px;}}
@media (max-width:576px){.page-homepage .hp-about-text{padding:48px 24px;min-height:auto;}}
.page-homepage .hp-about-media{min-height:400px;}
.page-homepage .hp-about-media img{width:100%;height:100%;min-height:400px;object-fit:cover;display:block;}
@media (max-width:991px){.page-homepage .hp-about-media{height:400px;}}
.page-homepage .hp-inline-link{
  display:inline-flex;align-items:center;gap:12px;padding-top:8px;text-decoration:none;color:var(--hp-ink);
}
.page-homepage .hp-inline-link:hover{color:var(--accent);gap:16px;}
.page-homepage .hp-inline-link img{transition:transform 220ms ease-out;}
.page-homepage .hp-inline-link:hover img{transform:translateX(4px);}

/* ---------------- ROW HEADER / FEATURED ---------------- */
.page-homepage .hp-row-header{
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;margin-bottom:40px;
}
.page-homepage .hp-label-link{
  font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:13px;letter-spacing:1px;
  color:#727272;text-decoration:none;
}
.page-homepage .hp-label-link:hover{color:var(--accent);}

.page-homepage .hp-carousel-wrap{position:relative;}
.page-homepage .hp-scroll-row{
  display:flex;gap:16px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;padding-bottom:4px;
}
@media (prefers-reduced-motion:no-preference){.page-homepage .hp-scroll-row{scroll-behavior:smooth;}}
@media (prefers-reduced-motion:reduce){.page-homepage .hp-scroll-row{scroll-snap-type:none;}}
@media (hover:none){.page-homepage .hp-scroll-row{scrollbar-width:none;}
  .page-homepage .hp-scroll-row::-webkit-scrollbar{width:0;height:0;}}

.page-homepage .hp-collection-card{
  position:relative;flex:0 0 min(348px,80vw);height:460px;border:1px solid var(--hp-line);
  scroll-snap-align:start;overflow:hidden;display:flex;flex-direction:column;justify-content:flex-end;
  perspective:800px;
}
.page-homepage .hp-collection-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.page-homepage .hp-card-gradient{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(0deg,#000000cc 0%,#00000000 45%);
}
.page-homepage .hp-card-body{position:relative;z-index:2;padding:24px;display:flex;flex-direction:column;gap:6px;}
.page-homepage .hp-card-body .hp-small-strong{color:#fff;}
.page-homepage .hp-card-caption{color:var(--hp-line);}

.page-homepage .hp-carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:999px;
  background:var(--hp-dark);border:1px solid var(--hp-line);display:flex;align-items:center;justify-content:center;
  z-index:3;cursor:pointer;
}
.page-homepage .hp-carousel-arrow--left{left:-24px;}
.page-homepage .hp-carousel-arrow--right{right:-24px;}
@media (max-width:1400px){
  .page-homepage .hp-carousel-arrow--left{left:0;}
  .page-homepage .hp-carousel-arrow--right{right:0;}
}
.page-homepage .hp-carousel-arrow:hover{background:#1e2c26;}

/* ---------------- LOYALTY ---------------- */
.page-homepage .hp-loyalty{
  background-image:url('/LenZGallery/public/frontend/LenZGallery/assets/images/16265-21246.jpg');
  background-size:cover;background-position:center;
  background-color:rgba(247,237,239,0.9);
  background-blend-mode:hue;
  padding:104px 0;
}
@media (max-width:991px){.page-homepage .hp-loyalty{padding:64px 0;}}
.page-homepage .hp-loyalty-header{
  display:flex;flex-direction:column;gap:16px;align-items:center;margin-bottom:56px;max-width:1000px;margin-left:auto;margin-right:auto;
}
.page-homepage .hp-tier-card{
  background:var(--hp-white);border:1px solid var(--hp-line);padding:32px;height:100%;
  display:flex;flex-direction:column;gap:24px;
}
.page-homepage .hp-tier-plain{opacity:0.85;}
.page-homepage .hp-tier-gold{
  border:1px solid var(--hp-pink);padding:32px 48px;gap:32px;
  box-shadow:0 16px 32px -4px rgba(21,32,28,0.06);
}
.page-homepage .hp-tier-gold-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;flex-wrap:wrap;}
.page-homepage .hp-pill{
  background:var(--hp-pink);color:var(--hp-ink);border-radius:999px;padding:6px 14px;
  font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:12px;letter-spacing:0.2px;white-space:nowrap;
}
.page-homepage .hp-loyalty-row{align-items:stretch;}

/* ---------------- RECENTLY ADDED ---------------- */
.page-homepage .hp-recent{padding-top:104px;padding-bottom:0;}
.page-homepage .hp-recent .hp-row-header{padding-left:240px;padding-right:240px;}
@media (max-width:1200px){.page-homepage .hp-recent .hp-row-header{padding-left:120px;padding-right:120px;}}
@media (max-width:768px){.page-homepage .hp-recent .hp-row-header{padding-left:40px;padding-right:40px;}}
@media (max-width:576px){.page-homepage .hp-recent .hp-row-header{padding-left:20px;padding-right:20px;}}

.page-homepage .hp-recent-band{gap:0;padding:0;}
.page-homepage .hp-recent-panel{
  position:relative;flex:0 0 min(480px,90vw);height:820px;scroll-snap-align:start;
  display:flex;flex-direction:column;justify-content:flex-end;padding:40px;overflow:hidden;
  perspective:800px;
}
.page-homepage .hp-recent-panel img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.page-homepage .hp-recent-gradient{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,#00000000 0%,#00000059 55%,#000000b8 100%);
}
.page-homepage .hp-recent-caption{position:relative;z-index:2;display:flex;flex-direction:column;gap:8px;color:#fff;}
.page-homepage .hp-recent-caption .hp-label-strong{color:rgba(255,255,255,0.75);}
@media (max-width:768px){.page-homepage .hp-recent-panel{height:560px;}}

/* ---------------- IMAGE COSTS ---------------- */
.page-homepage .hp-costs-header{display:flex;flex-direction:column;gap:24px;align-items:center;max-width:520px;margin:0 auto 64px;}
.page-homepage .hp-tier-col{display:flex;flex-direction:column;gap:12px;height:100%;}
.page-homepage .hp-tier-col img{width:100%;height:280px;object-fit:cover;}
@media (max-width:768px){.page-homepage .hp-tier-col img{height:220px;}}
.page-homepage .hp-tier-col h3{margin-top:4px;}

/* ---------------- FAQ ---------------- */
.page-homepage .hp-faq{background:var(--hp-blush);}
.page-homepage .hp-faq-grid{display:flex;gap:160px;flex-wrap:wrap;}
@media (max-width:1200px){.page-homepage .hp-faq-grid{gap:64px;}}
.page-homepage .hp-faq-heading{display:flex;flex-direction:column;gap:24px;flex:1 1 380px;max-width:447px;}
.page-homepage .hp-faq-list{flex:2 1 500px;min-width:0;}
.page-homepage .hp-hairline{width:100%;height:1px;display:block;object-fit:cover;border:none;}
.page-homepage .hp-faq-item{padding:32px 0;display:flex;flex-direction:column;gap:12px;}

/* ---------------- HOW CREDITS WORK ---------------- */
.page-homepage .hp-credits{background:var(--hp-dark);}
.page-homepage .hp-credits-statement{
  background:var(--hp-white);padding:104px 104px 104px 240px;display:flex;flex-direction:column;gap:32px;
}
@media (max-width:1200px){.page-homepage .hp-credits-statement{padding:64px 60px;}}
@media (max-width:576px){.page-homepage .hp-credits-statement{padding:48px 24px;}}
.page-homepage .hp-credits-sub{color:rgba(74,70,62,0.72);}
.page-homepage .hp-credits-steps{display:flex;flex-direction:column;gap:0;}
.page-homepage .hp-credits-step{display:flex;gap:32px;padding:24px 0;align-items:flex-start;}
.page-homepage .hp-step-num{color:rgba(33,31,27,0.55);flex-shrink:0;}
.page-homepage .hp-credits-media{min-height:400px;}
.page-homepage .hp-credits-media img{width:100%;height:100%;min-height:400px;object-fit:cover;display:block;}
@media (max-width:991px){.page-homepage .hp-credits-media{height:400px;}}

/* ---------------- ACTION / CTA ---------------- */
.page-homepage .hp-action{
  position:relative;padding:80px 120px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:28px;
  overflow:hidden;min-height:500px;
}
@media (max-width:768px){.page-homepage .hp-action{padding:56px 24px;}}
.page-homepage .hp-action-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.page-homepage .hp-action-overlay{position:absolute;inset:0;background:rgba(21,32,28,0.65);z-index:1;}
.page-homepage .hp-action-content{position:relative;z-index:2;display:flex;flex-direction:column;align-items:center;gap:28px;max-width:1680px;}
.page-homepage .hp-action-heading{color:#faf8f5;}
.page-homepage .hp-action-body{color:#e5e2dd;max-width:760px;}

.page-homepage .hp-btn-primary{
  position:relative;background:var(--hp-pink);color:var(--hp-ink);border:none;border-radius:999px;
  padding:17px 30px;font-family:'Instrument Sans',sans-serif;font-weight:500;font-size:16px;line-height:22.4px;
  cursor:pointer;display:inline-flex;align-items:center;justify-content:center;
  transition:background-color 220ms ease-out,transform 220ms ease-out,box-shadow 220ms ease-out;
}
.page-homepage .hp-btn-primary:hover{background:#ecc6cf;box-shadow:0 10px 24px rgba(0,0,0,0.18);}
.page-homepage .hp-cta-trace{
  position:absolute;inset:0;width:100%;height:100%;pointer-events:none;
}
.page-homepage .hp-cta-trace rect{
  fill:none;stroke:var(--accent);stroke-width:2;
  stroke-dasharray:400;stroke-dashoffset:400;
}
.page-homepage .hp-btn-primary.hp-cta-clicked .hp-cta-trace rect{
  animation:homepage-hp-trace 650ms ease-out;
}
@keyframes homepage-hp-trace{
  from{stroke-dashoffset:400;}
  to{stroke-dashoffset:0;}
}

/* tilt targets */
.page-homepage .hp-tilt{transition:transform 400ms ease-out;transform-style:preserve-3d;will-change:transform;}

/* magnetic targets */
.page-homepage .hp-magnetic{display:inline-flex;transition:transform 200ms ease-out;}

/* data-reveal base state comes from global.js/prelude; nothing extra needed here */