/* ============================================================
   Kawarthas Fishing — Landing Page
   Palette: deep lake teal + warm sunrise amber + cream paper
   Type: Fraunces (display serif) + Inter (body sans)
   ============================================================ */

:root{
  --bg: #f6f1e8;            /* warm cream paper */
  --bg-alt: #efe7d6;
  --ink: #1a2530;            /* deep cold ink */
  --ink-soft: #43525e;
  --muted: #6b7984;
  --line: #d9cfbd;
  --accent: #c97b3c;         /* sunrise amber */
  --accent-deep: #a35d28;
  --teal: #1f4e57;           /* deep lake teal */
  --teal-deep: #122e34;
  --teal-mist: #2f6a74;

  --shadow-sm: 0 1px 2px rgba(18,46,52,.08), 0 2px 8px rgba(18,46,52,.04);
  --shadow-md: 0 8px 24px rgba(18,46,52,.10);
  --shadow-lg: 0 24px 60px rgba(18,46,52,.18);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: clamp(24px, 2.4vw, 32px);
  --text-2xl: clamp(32px, 4vw, 52px);
  --text-hero: clamp(44px, 7vw, 96px);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display:block; max-width:100%; height:auto; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

a { color: inherit; text-underline-offset: 3px; }

/* ============ HEADER ============ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246,241,232,.6);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  background: rgba(246,241,232,.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand{
  display:flex; align-items:center; gap: 10px;
  text-decoration: none;
  color: var(--teal-deep);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark{ color: var(--teal); flex-shrink:0; }
.brand:hover .brand-mark{ color: var(--accent); transition: color .3s; }
.site-nav{
  display:flex; gap: clamp(12px, 2vw, 28px);
  font-size: var(--text-sm);
  font-weight: 500;
}
.site-nav a{
  text-decoration: none;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
  transition: color .2s;
}
.site-nav a:hover{ color: var(--teal); }
.site-nav a::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:0;
  height:1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after{ transform: scaleX(1); }

@media (max-width: 720px){
  .site-nav{ display:none; }
}

/* ============ HERO ============ */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #f6f1e8;
  overflow: hidden;
  padding-bottom: clamp(48px, 8vw, 96px);
  margin-top: -65px;        /* tuck under sticky header */
  padding-top: 120px;
}
.hero-image{
  position:absolute; inset:0; z-index: 0;
}
.hero-image img{
  width:100%; height:100%; object-fit:cover; object-position: center 60%;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(18,46,52,.55) 0%, rgba(18,46,52,.15) 35%, rgba(18,46,52,.85) 100%);
}
.hero-content{ position: relative; z-index: 1; max-width: 980px; }

.eyebrow{
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 18px;
}

/* Hero eyebrow gets a backing pill for legibility against bright sky */
.hero .eyebrow{
  color: #fff;
  background: rgba(18,46,52,.55);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero .eyebrow::before{
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

.hero-title{
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-title em{
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-sub{
  max-width: 60ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(246,241,232,.88);
  margin: 0 0 32px;
}

.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 56px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  border: 1px solid transparent;
}
.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{ background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  color: #f6f1e8;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{ background: rgba(255,255,255,.18); }

.hero-stats{
  display:flex; gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  border-top: 1px solid rgba(246,241,232,.25);
  padding-top: 24px;
  max-width: 700px;
}
.hero-stats > div{ display:flex; flex-direction:column; }
.stat-num{
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1;
  color: #f6f1e8;
}
.stat-lbl{
  margin-top: 6px;
  font-size: var(--text-xs);
  color: rgba(246,241,232,.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============ SECTIONS ============ */
.section{
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-head{
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.section-title{
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-sub{
  font-size: var(--text-lg);
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
}

/* ============ WHY ============ */
.section-why{ background: var(--bg); }
.grid-2{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 880px){
  .grid-2{ grid-template-columns: 1fr; }
}
.why-copy .eyebrow{ color: var(--accent-deep); }
.why-copy .section-title{ text-align:left; }
.lede{
  font-size: var(--text-lg);
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 56ch;
}
.why-list{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 18px;
}
.why-list li{
  padding-left: 24px;
  position: relative;
  font-size: var(--text-base);
  color: var(--ink);
}
.why-list li::before{
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 12px; height: 1px; background: var(--accent);
}
.why-list strong{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--teal-deep);
  display: block;
  margin-bottom: 2px;
}
.why-image{ position: relative; }
.why-image img{
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.why-image figcaption{
  margin-top: 14px;
  font-size: var(--text-xs);
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ============ SPECIES ============ */
.section-species{
  background: var(--teal-deep);
  color: #f6f1e8;
}
.section-species .section-title{ color: #f6f1e8; }
.section-species .section-sub{ color: rgba(246,241,232,.75); }
.section-species .eyebrow{ color: var(--accent); }

.species-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){
  .species-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .species-grid{ grid-template-columns: 1fr; }
}
.species-card{
  background: rgba(246,241,232,.04);
  border: 1px solid rgba(246,241,232,.10);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.species-card:hover{
  transform: translateY(-3px);
  border-color: rgba(201,123,60,.5);
  background: rgba(246,241,232,.06);
}
.species-img{
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--teal);
}
.species-img img{
  width:100%; height:100%; object-fit: cover;
  transition: transform .6s ease;
}
.species-card:hover .species-img img{ transform: scale(1.04); }
.species-body{
  padding: 22px 22px 24px;
}
.species-body h3{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 4px;
  color: #f6f1e8;
}
.latin{
  font-style: italic;
  font-size: var(--text-xs);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.species-body p{
  font-size: var(--text-sm);
  color: rgba(246,241,232,.78);
  margin: 0 0 16px;
  line-height: 1.55;
}
.meta-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: rgba(246,241,232,.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  border-top: 1px solid rgba(246,241,232,.10);
  padding-top: 12px;
}

/* ============ FULL BLEED DIVIDER ============ */
.full-bleed{
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  overflow: hidden;
}
.full-bleed img{
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
}

/* ============ LAKES ============ */
.section-lakes{ background: var(--bg-alt); }
.lake-list{
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px){
  .lake-list{ grid-template-columns: 1fr; }
}
.lake-item{
  display: flex;
  gap: 20px;
  padding: 36px 8px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .25s ease;
}
.lake-list .lake-item:nth-child(2n){ border-right: none; }
@media (max-width: 760px){
  .lake-item{ border-right: none; }
}
.lake-item:hover{ background: rgba(31,78,87,.04); }

.lake-num{
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
}
.lake-body h3{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--teal-deep);
}
.lake-tag{
  font-size: var(--text-xs);
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 10px;
}
.lake-body > p:last-child{
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  max-width: 50ch;
}

/* ============ SEASONS ============ */
.section-seasons{ background: var(--bg); }
.seasons-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px){
  .seasons-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .seasons-grid{ grid-template-columns: 1fr; }
}
.season-card{
  padding: 28px 24px 30px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.season-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.season-card::before{
  content:'';
  position:absolute; top:0; left:0; right:0; height: 3px;
  background: var(--accent);
}
.season-spring::before{ background: #6c9d6e; }
.season-summer::before{ background: #c97b3c; }
.season-fall::before{ background: #a8492a; }
.season-winter::before{ background: #6b8a98; }

.season-icon{
  width: 44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--teal);
  margin-bottom: 16px;
}
.season-card h3{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--teal-deep);
}
.season-when{
  font-size: var(--text-xs);
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 14px;
}
.season-card > p{
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.55;
}
.season-list{
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.season-list li{
  font-size: var(--text-sm);
  color: var(--ink);
  padding: 6px 0 6px 18px;
  position: relative;
}
.season-list li::before{
  content: '·';
  position: absolute; left: 4px; top: 4px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

/* ============ TIPS ============ */
.section-tips{
  background: var(--teal);
  color: var(--bg);
}
.section-tips .eyebrow{ color: var(--accent); }
.section-tips .section-title{ color: var(--bg); }

.tips-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246,241,232,.18);
  border: 1px solid rgba(246,241,232,.18);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 880px){
  .tips-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .tips-grid{ grid-template-columns: 1fr; }
}
.tip{
  background: var(--teal);
  padding: 36px 28px 32px;
  transition: background .25s ease;
}
.tip:hover{ background: var(--teal-mist); }
.tip-num{
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.tip h3{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--bg);
}
.tip p{
  font-size: var(--text-sm);
  color: rgba(246,241,232,.82);
  margin: 0;
  line-height: 1.6;
}
.tip em{ color: var(--accent); font-style: italic; }

/* ============ MAP ============ */
.section-map{ background: var(--bg-alt); }
.map-frame{
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  border: 1px solid var(--line);
}
.map-frame iframe{ display:block; width:100%; }

.map-cta{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.map-cta p{
  margin: 0;
  color: var(--ink-soft);
  max-width: 56ch;
}
.map-links{
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center;
}
.map-links a{
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color .2s;
}
.map-links a:hover{ color: var(--accent-deep); }

/* ============ FOOTER ============ */
.site-footer{
  background: var(--teal-deep);
  color: rgba(246,241,232,.7);
  padding: 56px 0 36px;
  text-align: center;
}
.footer-inner{ display:flex; flex-direction:column; align-items:center; gap: 16px; }
.footer-brand{
  display:flex; align-items:center; gap: 10px;
  color: var(--bg);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
}
.footer-brand svg{ color: var(--accent); }
.footer-note{
  max-width: 60ch;
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
}
.footer-meta{
  margin: 8px 0 0;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,241,232,.45);
}

/* ============ ACTIVE NAV LINK ============ */
.site-nav a[aria-current="page"]{
  color: var(--teal-deep);
}
.site-nav a[aria-current="page"]::after{
  transform: scaleX(1);
}

/* ============ RESOURCES PAGE ============ */
.page-resources{ background: var(--bg); }
.page-hero{
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow{
  color: var(--accent-deep);
}
.page-title{
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--teal-deep);
  margin: 0 0 18px;
  max-width: 16ch;
  text-wrap: balance;
}
.page-sub{
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}

.res-main{
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 88px);
}
.res-section{}
.res-head{
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.res-head h2{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.015em;
  color: var(--teal-deep);
  margin: 0 0 6px;
  line-height: 1.15;
}
.res-head p{
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-base);
  max-width: 56ch;
}

/* Quick links grid */
.quick-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px){ .quick-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .quick-grid{ grid-template-columns: 1fr; } }
.quick-card{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.quick-card:hover{
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.quick-icon{
  font-size: 24px;
  margin-bottom: 4px;
}
.quick-card strong{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--teal-deep);
  line-height: 1.2;
}
.quick-card span:last-child{
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.4;
}

/* Resource list */
.res-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px){ .res-list{ grid-template-columns: 1fr; } }
.res-list li{
  padding: 22px 24px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.res-list li:nth-child(2n){ border-right: none; }
@media (max-width: 720px){ .res-list li{ border-right: none; } }
.res-list li:hover{ background: var(--bg-alt); }
.res-list h3{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.res-list h3 a{
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.res-list h3 a:hover{
  color: var(--accent-deep);
  border-bottom-color: var(--accent);
}
.res-list p{
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* Emergency cards */
.res-section-emergency .res-head h2{ color: var(--accent-deep); }
.emerg-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px){ .emerg-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .emerg-grid{ grid-template-columns: 1fr; } }
.emerg-card{
  background: var(--teal-deep);
  color: #f6f1e8;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border-left: 3px solid var(--accent);
}
.emerg-num{
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #f6f1e8;
  margin-bottom: 4px;
}
.emerg-card p{
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(246,241,232,.75);
  line-height: 1.5;
}

.res-disclaimer{
  font-size: var(--text-xs);
  color: var(--muted);
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ============ FOOTER LINKS ============ */
.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 4px 0 6px;
  font-size: var(--text-sm);
}
.footer-links a,
.footer-links .footer-link-btn{
  color: rgba(246,241,232,.85);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.footer-links a:hover,
.footer-links .footer-link-btn:hover{
  color: var(--accent);
}
.footer-links span{ color: rgba(246,241,232,.4); }

/* ============ MODAL ============ */
.modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal.is-open{
  opacity: 1;
  pointer-events: auto;
}
.modal[hidden]{ display: none; }
.modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(18,46,52,.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-panel{
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 80px);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--line);
}
.modal.is-open .modal-panel{
  transform: translateY(0) scale(1);
}
.modal-close{
  position: sticky;
  top: 12px;
  margin-left: auto;
  margin-right: 12px;
  margin-top: 12px;
  margin-bottom: -36px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, transform .15s;
  float: right;
}
.modal-close:hover{ background: var(--accent); color:#fff; border-color: var(--accent); }
.modal-close:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.modal-content{
  padding: clamp(28px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 40px);
}
.modal-content .eyebrow{
  color: var(--accent-deep);
  margin-top: 0;
}
.modal-content h2{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--teal-deep);
  text-wrap: balance;
}
.modal-content h3{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 28px 0 8px;
  color: var(--teal-deep);
}
.modal-content p{
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.65;
}
.modal-content ul{
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--ink-soft);
}
.modal-content ul li{
  margin-bottom: 8px;
  font-size: var(--text-base);
  line-height: 1.55;
}
.modal-content a{
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.modal-content a:hover{ color: var(--accent-deep); }
.modal-content strong{ color: var(--teal-deep); }
.modal-lede{
  font-size: var(--text-lg) !important;
  color: var(--ink) !important;
  margin-bottom: 24px !important;
  line-height: 1.55 !important;
}
.modal-meta{
  font-size: var(--text-xs) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted) !important;
  margin: 0 0 24px !important;
}
.modal-contact-block{
  background: var(--bg-alt);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
  margin-top: 16px !important;
  font-size: var(--text-sm) !important;
  line-height: 1.7 !important;
}

/* About-modal-specific */
.about-brands{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 28px 0 24px;
}
@media (min-width: 720px){
  .about-brands{ grid-template-columns: 1fr 1fr; }
}
.about-brand{
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  position: relative;
}
.about-brand:first-child{
  border-top: 3px solid var(--teal);
}
.about-brand:last-child{
  border-top: 3px solid var(--accent);
}
.about-brand-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.about-brand-head svg{
  color: var(--teal-deep);
  flex-shrink: 0;
}
.about-brand:last-child .about-brand-head svg{ color: var(--accent-deep); }
.about-brand-head h3{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 2px;
  line-height: 1.2;
}
.about-tag{
  font-size: var(--text-xs) !important;
  margin: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted) !important;
  font-weight: 500;
}
.about-brand > p{
  font-size: var(--text-sm) !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}
.about-services{
  list-style: none;
  padding: 0;
  margin: 12px 0 0 !important;
  font-size: var(--text-sm);
}
.about-services li{
  padding: 8px 0 8px 20px;
  position: relative;
  border-top: 1px solid var(--line);
  font-size: var(--text-sm) !important;
}
.about-services li:first-child{ border-top: 0; }
.about-services li::before{
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--accent);
}
.modal-contact{
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.modal-contact-lead{
  font-family: 'Fraunces', serif;
  font-size: 18px !important;
  color: var(--teal-deep) !important;
  margin: 0 0 8px !important;
}
.modal-contact-email{
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--accent-deep) !important;
  text-decoration: none !important;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  margin: 4px 0 8px;
  transition: color .2s;
}
.modal-contact-email:hover{ color: var(--teal-deep) !important; }
.modal-contact-meta{
  font-size: var(--text-xs) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted) !important;
  margin: 0 !important;
}

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