/*
Theme Name: Kanopi Law
Theme URI: https://kanopilaw.com
Author: sachinthakur.in
Description: Custom WordPress theme for Kanopi Law — a boutique intellectual property and business law firm. Converted from static site design.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: kanopi-law
*/

/* ==========================================================================
   Kanopi Law — Design Tokens
   Palette pulled directly from the mark: deep signature blue + sunburst gold
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');


:root{
  /* Text */
  --ink:#122C63;
  --ink-soft:#5E6B86;
  --ink-faint:#8A93A7;

  /* Brand */
  --blue:#2F5FE3;
  --blue-deep:#173B82;
  --blue-light:#6E92F2;

  /* Accent */
  --gold:#E8B931;
  --gold-deep:#C79618;

  /* Background */
  --paper:linear-gradient(180deg, transparent, transparent);
  --paper-2:#F2F0EC;
  --cream:#FCFBF9;

  /* Borders */
  --line:#D8DEE8;

  /* Typography */
  --display:'Fraunces', serif;
  --body:'Inter', sans-serif;
  --mono:'IBM Plex Mono', monospace;

  --container:1180px;
  --radius:8px;
  --ease:cubic-bezier(.22,.61,.36,1);
}


*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background-color:var(--cream);
  background-image:url('https://cdn.prod.website-files.com/66fab24c6dde4d79b3b507d9/68e6080530881c9c026b4f29_single-bg.svg');
  background-repeat:repeat-x;
  background-size:contain;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--display); margin:0; color:var(--ink); font-weight:600; }
p{ margin:0; }
.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }

::selection{ background:var(--gold); color:var(--ink); }

:focus-visible{
  outline:2px solid var(--blue);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

/* ==========================================================================
   Eyebrow / labels
   ========================================================================== */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ink);
  font-weight:500;
}
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background:var(--gold-deep);
  display:inline-block;
}

/* ==========================================================================
   Sunburst / arch / laurel motifs (signature element)
   ========================================================================== */
.motif-sun{
  display:block;
}
.divider-sun{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin: 56px 0;
  color:var(--line);
}
.divider-sun::before,.divider-sun::after{
  content:'';
  height:1px;
  flex:1;
  max-width:220px;
  background:linear-gradient(90deg, transparent, var(--line));
}
.divider-sun::after{ background:linear-gradient(90deg, var(--line), transparent); }
.divider-sun svg{ width:26px; height:26px; color:var(--gold-deep); flex-shrink:0; }

/* Arch frame — the site's signature device, echoing the canopy in the mark */
.arch-frame{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--paper-2);
}
.arch-frame img{ width:100%; height:100%; object-fit:cover; display:block; }

.arch-card{
  position:relative;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius: 120px 120px 10px 10px;
  padding:52px 34px 32px;
  text-align:center;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(250,246,236,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px;
  max-width:var(--container);
  margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:46px; width:auto; }
.brand-word{ font-family:var(--display); font-size:20px; font-weight:600; letter-spacing:.02em; color:var(--ink); }
.brand-word span{ color:var(--ink); }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--ink-soft);
  position:relative; padding:6px 0;
  transition:color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active, .nav-links a.current-menu-item, .nav-links li.current-menu-item > a{ color:var(--blue); }
.nav-links a.active::after, .nav-links li.current-menu-item > a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--gold);
}
.nav-cta{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--blue); color:#fff !important;
  padding:11px 20px; border-radius:999px; font-size:14px; font-weight:600;
  transition:background .2s var(--ease), transform .2s var(--ease);
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--blue-deep); transform:translateY(-1px); }

.nav-toggle{
  display:none; background:none; border:none; padding:8px; color:var(--ink);
}
.nav-toggle svg{ width:26px; height:26px; }

.nav-drawer{ display:contents; }
.nav-close{ display:none; }
.nav-backdrop{ display:none; }

@media (max-width: 880px){
  .nav-toggle{ display:block; }
  .brand-word{ font-size:17px; }

  /* Backdrop covers the remaining ~40% (and everything else); click closes the drawer */
  .nav-backdrop{
    display:block;
    position:fixed; inset:0; z-index:59;
    background:rgba(18,44,99,0.35);
    opacity:0; pointer-events:none;
    transition:opacity .25s var(--ease);
  }
  .nav-backdrop.open{ opacity:1; pointer-events:auto; height:100vh; }

  /* Drawer: left side, full height, 60% width */
  .nav-drawer{
    display:block;
    position:fixed; top:0; left:0; bottom:0;
    width:60%; max-width:360px;
    background:var(--cream);
    z-index:60;
    box-shadow:20px 0 50px -20px rgba(11,30,66,.35);
    transform:translateX(-100%);
    transition:transform .3s var(--ease);
    overflow-y:auto;
    padding:20px 24px 28px;
  }
  .nav-drawer.open{ transform:translateX(0); height:100vh;}

  .nav-close{
    display:flex; align-items:center; justify-content:center;
    width:38px; height:38px; margin-bottom:22px;
    background:var(--paper-2); border:1px solid var(--line); border-radius:50%;
    color:var(--ink);
  }
  .nav-close svg{ width:18px; height:18px; }
  .nav-close:hover{ border-color:var(--blue); color:var(--blue); }

  .nav-links{
    flex-direction:column; align-items:flex-start; gap:0;
  }
  .nav-links a{ width:100%; padding:14px 0; border-bottom:1px solid var(--line); display:inline-block; }
  .nav-cta{ margin-top:16px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  padding:96px 0 90px;
  overflow:hidden;
  min-height: 80vh;
  isolation:isolate;
  background:url('assets/hero-section-background.jpg');
  background-size:cover;
  background-position:right top;
}
.hero-art{
  position:absolute; inset:0; z-index:-1;
  display:flex; align-items:center; justify-content:center;
}
.hero-art svg{ width:min(1100px, 150%); height:auto; opacity:.9; }
.hero-inner{ position:absolute; bottom:100px; }
.hero h1{
  font-size:clamp(34px, 5.4vw, 60px);
  line-height:1.08;
  letter-spacing:-.01em;
  margin:22px 0 20px;
  color:var(--cream);
  max-width: 677px;
}
.hero h1 em{ color:var(--gold); font-style:normal; }
.hero .lede{
  font-size:18px; color:var(--cream); max-width:600px;
}
.hero .lede strong{ color:var(--gold); font-weight:600; }

.button-row{ display:flex; gap:16px; justify-content:start; flex-wrap:wrap; margin-top:20px; }
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 28px; border-radius:999px;
  font-size:15px; font-weight:600;
  transition:transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  border:1px solid transparent;
}
.btn-primary{ background:var(--blue); color:#fff; }
.btn-primary:hover{ background:var(--blue-deep); transform:translateY(-2px); box-shadow:0 12px 24px -14px rgba(1,60,164,.6); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--ink); }
.btn-gold:hover{ background:#e6a900; transform:translateY(-2px); box-shadow:0 12px 24px -14px rgba(253,187,5,.6); }

/* Tagline marquee strip */
.tagline-strip{
  background:var(--ink);
  color:var(--paper);
  overflow:hidden;
  border-top:1px solid var(--gold);
  border-bottom:1px solid var(--gold);
}
.tagline-track{
  display:flex; gap:48px; white-space:nowrap;
  padding:14px 0;
  animation: marquee 32s linear infinite;
  width:max-content;
}
.tagline-track span{
  font-family:var(--mono); font-size:13px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--paper-2); opacity:.9; display:flex; align-items:center; gap:48px;
}
.tagline-track span::after{ content:'✦'; color:var(--gold); margin-left:48px; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

@media (max-width: 880px){
    .hero{
          background:url('assets/hero-section-background-mobile.jpg');
          background-size:cover;
          background-position: center center;
          text-align: center;
    }
    .hero-inner{
        top:0px;
    }
}

/* ==========================================================================
   Section basics
   ========================================================================== */
.section{ padding:0px 0; }
.section-head{ max-width:840px; margin:0 0 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px, 3.6vw, 40px); margin-top:16px; line-height:1.15; }
.section-head p{ color:var(--ink-soft); font-size:17px; margin-top:16px; }

.band{ background:var(--paper); }
.band-deep{ background:var(--ink); color:var(--paper); }
.band-deep .eyebrow{ color:var(--gold); }
.band-deep .eyebrow::before{ background:var(--gold); }
.band-deep h2, .band-deep h3{ color:#fff; }
.band-deep p{ color:rgba(250,246,236,.72); }

/* ==========================================================================
   Tiles / cards
   ========================================================================== */
.grid{ display:grid; gap:26px; }
.grid-3{ grid-template-columns:repeat(3, 1fr); }
.grid-2{ grid-template-columns:repeat(2, 1fr); }
@media (max-width: 920px){ .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width: 640px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }

.tile{
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 28px;
  position:relative;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.tile:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -28px rgba(11,30,66,.35); border-color:var(--blue-light); }
.tile .num{
  font-family:var(--mono); font-size:12px; color:var(--gold-deep); letter-spacing:.1em;
}
.tile h3{ font-size:19px; margin:14px 0 10px; }
.tile p{ color:var(--ink-soft); font-size:15px; }
.tile-icon{ width:38px; height:38px; color:var(--blue); margin-bottom:6px; }

/* ==========================================================================
   Practice area blocks
   ========================================================================== */
.practice-block{
  padding:64px 0;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:52px;
}
.practice-block:first-of-type{ border-top:none; }
@media (max-width: 860px){ .practice-block{ grid-template-columns:1fr; gap:24px; } }
.practice-side{ top:96px; align-self:start; }
.practice-side .eyebrow{ margin-bottom:14px; }
.practice-side h3{ font-size:26px; line-height:1.2; }
.practice-lede{ color:var(--ink-soft); font-size:16px; margin-top:14px; }
.practice-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 28px; margin-top:8px; }
@media (max-width:560px){ .practice-list{ grid-template-columns:1fr; } }
.practice-list li{
  font-size:15px; color:var(--ink); padding:11px 0 11px 22px; position:relative;
  border-bottom:1px dashed var(--line);
}
.practice-list li::before{
  content:''; position:absolute; left:0; top:19px; width:9px; height:9px;
  background:var(--gold); border-radius:1px; transform:rotate(45deg);
}
.practice-foot{ margin-top:18px; color:var(--ink-faint); font-style:italic; font-size:14.5px; }

/* ==========================================================================
   Quote / callout
   ========================================================================== */
.callout{
  border-left:3px solid var(--gold);
  padding:6px 0 6px 26px;
  font-family:var(--display);
  font-size:22px;
  line-height:1.45;
  color:var(--ink);
  max-width:760px;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background:var(--ink);
  color:#fff;
  border-radius:16px;
  padding:64px 44px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band h2{ color:#fff; font-size:clamp(26px,3.4vw,36px); }
.cta-band p{ color:rgba(250,246,236,.75); margin-top:14px; max-width:520px; margin-left:auto; margin-right:auto; }
.cta-band .button-row{ margin-top:28px; justify-content:center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background:var(--ink); color:rgba(250,246,236,.7);
  padding:64px 0 28px; margin-top:40px;
}
.footer-grid{ display:grid; grid-template-columns:1fr 1px 260px; gap:0 48px; align-items:start; }
@media (max-width:680px){ .footer-grid{ grid-template-columns:1fr; gap:32px; } }
.footer-divider{ width:1px; background:rgba(250,246,236,.14); align-self:stretch; }
@media (max-width:680px){ .footer-divider{ display:none; } }
.footer-brand-col p{ max-width:420px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.footer-brand img{ height:40px; filter:brightness(0) invert(1); }
.footer-brand-word{ font-family:var(--display); font-size:19px; color:#fff; }
.site-footer p{ font-size:14.5px; line-height:1.7; }
.footer-col h4{ color:#fff; font-size:13px; letter-spacing:.08em; text-transform:uppercase; font-family:var(--body); font-weight:600; margin-bottom:16px; }
.footer-col li{ margin-bottom:11px; font-size:14.5px; }
.footer-col a{ font-size:14.5px; transition:color .2s; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  border-top:1px solid rgba(250,246,236,.14);
  margin-top:48px; padding-top:24px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:13px; color:rgba(250,246,236,.5);
}

/* ==========================================================================
   Disclaimer modal
   ========================================================================== */
.disclaimer-overlay{
  position:fixed; inset:0; z-index:200;
  background:rgba(7,32,73,0.72);
  backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
}
.disclaimer-overlay[hidden]{ display:none; }
.disclaimer-modal{
  background:var(--cream);
  background-image:url('assets/texture2.jpeg');
  background-size:420px;
  border:1px solid var(--line);
  border-radius:14px;
  max-width:560px; width:100%;
  max-height:88vh; overflow-y:auto;
  padding:40px 36px 32px;
  box-shadow:0 40px 80px -30px rgba(0,0,0,.5);
}
.disclaimer-modal .motif-sun{ width:34px; height:34px; color:var(--gold-deep); margin-bottom:16px; }
.disclaimer-modal h3{ font-size:21px; margin-bottom:14px; }
.disclaimer-modal p{ font-size:14.5px; color:var(--ink-soft); margin-bottom:14px; }
.disclaimer-modal ul{ margin:14px 0; display:flex; flex-direction:column; gap:10px; }
.disclaimer-modal ul li{
  font-size:14px; color:var(--ink-soft); padding-left:20px; position:relative;
}
.disclaimer-modal ul li::before{
  content:''; position:absolute; left:0; top:7px; width:6px; height:6px; background:var(--blue); border-radius:50%;
}
.disclaimer-actions{ display:flex; gap:14px; margin-top:24px; flex-wrap:wrap; }
.disclaimer-actions .btn{ flex:1; justify-content:center; min-width:140px; }

/* ==========================================================================
   Accordion (FAQ / curriculum-style, used on About & Practice pages if needed)
   ========================================================================== */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-trigger{
  width:100%; background:none; border:none; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 4px; font-family:var(--display); font-size:17px; color:var(--ink);
}
.accordion-trigger svg{ width:18px; height:18px; flex-shrink:0; transition:transform .25s var(--ease); color:var(--blue); }
.accordion-item.open .accordion-trigger svg{ transform:rotate(45deg); }
.accordion-panel{
  max-height:0; overflow:hidden; transition:max-height .3s var(--ease);
}
.accordion-panel-inner{ padding:0 4px 22px; color:var(--ink-soft); font-size:15px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:56px; align-items:start; }
@media (max-width:920px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info-card{
  background:var(--ink); color:#fff; border-radius:14px; padding:40px 32px;
}
.contact-info-card h3{ color:#fff; font-size:22px; margin-bottom:20px; }
.contact-row{ display:flex; gap:14px; padding:16px 0; border-top:1px solid rgba(250,246,236,.14); }
.contact-row:first-of-type{ border-top:none; }
.contact-row svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.contact-row .label{ font-size:12px; text-transform:uppercase; letter-spacing:.08em; color:rgba(250,246,236,.55); margin-bottom:4px; }
.contact-row .value{ font-size:15px; color:#fff; }

.form-card{ background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:40px 34px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:520px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13px; font-weight:600; color:var(--ink); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 15px; border-radius:8px; border:1px solid var(--line);
  background:var(--cream); font-family:var(--body); font-size:14.5px; color:var(--ink);
  transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--blue); outline:none; }
.field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:13px; color:var(--ink-faint); margin-top:-4px; margin-bottom:20px; }
.form-success{
  background:#EAF6EC; border:1px solid #B7E0BC; color:#1E5E29;
  padding:16px 18px; border-radius:8px; font-size:14.5px; margin-bottom:22px;
}
.form-error{
  background:#FDEDEC; border:1px solid #F1B3AE; color:#8A2A22;
  padding:16px 18px; border-radius:8px; font-size:14.5px; margin-bottom:22px;
}

/* ==========================================================================
   Misc: image placeholder helper, insights list
   ========================================================================== */
.ph-img{ background:var(--paper-2); }

.insight-card{
  display:grid; grid-template-columns:220px 1fr; gap:26px;
  padding:30px 0; border-bottom:1px solid var(--line); align-items:center;
}
.insight-card{ cursor:default; }
a.insight-card{ cursor:pointer; }
a.insight-card:hover h3{ color:var(--blue); }
@media (max-width:640px){ .insight-card{ grid-template-columns:1fr; } }
.insight-thumb{ border-radius:8px; overflow:hidden; aspect-ratio:4/3; border:1px solid var(--line); background:var(--paper); }
.insight-thumb img{ width:100%; height:100%; object-fit:cover; }
.insight-meta{ font-family:var(--mono); font-size:12px; color:var(--blue); letter-spacing:.06em; text-transform:uppercase; margin-bottom:10px; }
.insight-card h3{ font-size:21px; margin-bottom:8px; }
.insight-card p{ color:var(--ink-soft); font-size:15px; }

.empty-note{
  text-align:center; padding:80px 20px; border:1px dashed var(--line); border-radius:14px;
}
.empty-note .motif-sun{ width:40px; height:40px; color:var(--gold-deep); margin:0 auto 18px; }
.empty-note h3{ font-size:22px; margin-bottom:10px; }
.empty-note p{ color:var(--ink-soft); max-width:420px; margin:0 auto; }

/* Reveal-on-scroll (subtle, respects reduced motion) */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* Breadcrumb-ish page header used on inner pages */
.page-hero{ padding:64px 0 48px; text-align:center; }
.page-hero .eyebrow{ justify-content:center; }
.page-hero h1{ font-size:clamp(32px,4.6vw,48px); margin:18px 0 14px; }
.page-hero p{ color:var(--ink-soft); font-size:16.5px; max-width:600px; margin:0 auto; }

/* ==========================================================================
   Single post content (WordPress editor output)
   ========================================================================== */
.post-content{ max-width:760px; margin:0 auto; font-size:16.5px; color:var(--ink-soft); }
.post-content h2,.post-content h3{ color:var(--ink); margin-top:38px; margin-bottom:14px; }
.post-content p{ margin-bottom:18px; }
.post-content ul,.post-content ol{ margin:0 0 18px; padding-left:22px; list-style:revert; }
.post-content a{ color:var(--blue); text-decoration:underline; }
.post-content img{ border-radius:8px; margin:24px 0; }
.post-content blockquote{ border-left:3px solid var(--gold); padding-left:20px; font-family:var(--display); font-size:20px; color:var(--ink); margin:24px 0; }
.post-meta{ font-family:var(--mono); font-size:12px; color:var(--blue); letter-spacing:.06em; text-transform:uppercase; text-align:center; margin-bottom:8px; }

/* Pagination */
.blog-pagination{ display:flex; justify-content:center; gap:12px; margin-top:48px; }
.blog-pagination a, .blog-pagination span{
  padding:10px 18px; border:1px solid var(--line); border-radius:999px; font-size:14px; color:var(--ink-soft);
}
.blog-pagination a:hover{ border-color:var(--blue); color:var(--blue); }
.blog-pagination .current{ background:var(--blue); color:#fff; border-color:var(--blue); }


    /* ==========================================================================
   Golden Section Divider
   ========================================================================== */
.gold-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  max-width:var(--container);
  margin:0 auto;
  padding:28px 14px;
}
.gold-divider-line{
  flex:1;
  max-width:340px;
  height:1px;
  background:linear-gradient(90deg, transparent, var(--gold-deep));
}
.gold-divider-line:last-child{
  background:linear-gradient(90deg, var(--gold-deep), transparent);
}
.gold-divider-ornament{
  width:42px;
  height:42px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-deep);
}
.gold-divider-ornament svg{
  width:22px;
  height:22px;
}

@media (max-width:640px){
  .gold-divider{ gap:14px; padding:20px 10px; }
  .gold-divider-line{ max-width:100px; }
}