/*
Theme Name: Emmet.t.c
Theme URI: https://emmetc.co.uk
Author: Emmet.t.c / LemonLens
Author URI: https://lemonlens.com
Description: Bespoke editorial portfolio theme for Emmet.t.c, London photographer and videographer. Conversion-optimised page system for home, about, portraits, weddings, events, gallery, contact and blog. Built-in SEO structured data and local geo signals for London / Fulham SW6.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emmetc
Tags: portfolio, photography, one-column, custom-menu, editor-style
*/

/* ============================================================
   Emmet.t.c — editorial design system.
   Palette used ONLY as accents: underlines, bars, hover states.
   Base stays editorial (paper + ink).
   ============================================================ */

:root {
  /* accent palette */
  --c-charcoal: #2b2e3a;
  --c-purple:   #7e5da8;
  --c-blue:     #76a7db;
  --c-pink:     #c8506e;
  --c-orange:   #dd6b3d;
  --c-yellow:   #f4c549;

  /* editorial base */
  --paper:  #faf7f1;
  --paper-2:#f3efe6;
  --ink:    #16161a;
  --ink-60: rgba(22, 22, 26, .62);
  --ink-15: rgba(22, 22, 26, .14);

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Inter", -apple-system, sans-serif;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* WordPress core requirements */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .8rem; color: var(--ink-60); padding-top: .4rem; }
.sticky, .bypostauthor { position: static; }

/* ---------- accent underline utility ---------- */
.u {
  font-style: normal;
  background-repeat: no-repeat;
  background-size: 100% .14em;
  background-position: 0 92%;
  padding-bottom: .04em;
}
.u--yellow { background-image: linear-gradient(var(--c-yellow), var(--c-yellow)); }
.u--pink   { background-image: linear-gradient(var(--c-pink), var(--c-pink)); }
.u--blue   { background-image: linear-gradient(var(--c-blue), var(--c-blue)); }
.u--purple { background-image: linear-gradient(var(--c-purple), var(--c-purple)); }
.u--orange { background-image: linear-gradient(var(--c-orange), var(--c-orange)); }

.accent-bar {
  display: inline-block;
  width: 2.5rem; height: 3px;
  vertical-align: middle;
  margin-right: .75rem;
}
.accent-bar--yellow { background: var(--c-yellow); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--gutter);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-15);
}

/* switch + hamburger cluster, pushed to the right on desktop */
.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* hamburger — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--ink-15);
  background: var(--paper);
  border-radius: 10px;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
  position: relative;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle-bar { top: 50%; margin-top: -1px; }
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

.wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: -.01em;
}
.wordmark-dot { color: var(--c-orange); }
.custom-logo { max-height: 2.6rem; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .85rem;
  font-weight: 500;
}
.nav-link {
  text-decoration: none;
  color: var(--ink-60);
  transition: color .2s;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .35em;
}
.nav-link:hover,
.nav-link.is-current { color: var(--ink); }

.nav-cta {
  text-decoration: none;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: .45em 1.1em;
  transition: background .25s, color .25s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

/* ---------- Services mega-menu ----------
   A single "Services" item. Hovering (or focusing) it expands into
   the three core services, each heading its own column of specific
   sub-services. */
.nav-item--services { position: relative; }
.nav-mega {
  position: absolute;
  top: calc(100% + .55rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  display: grid;
  grid-template-columns: repeat(3, minmax(9.5rem, 1fr));
  gap: 1.5rem;
  min-width: 34rem;
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: 12px;
  box-shadow: 0 24px 60px -24px rgba(22, 22, 26, .3);
  padding: 1.4rem 1.6rem;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-item--services:hover .nav-mega,
.nav-item--services:focus-within .nav-mega,
.nav-item--services.is-open .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Hover bridges so the menu does not close while the cursor crosses the
   gap between the toggle and the panel — one directly under the toggle,
   and one spanning the full width of the panel (only live when open). */
.nav-item--services::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: .7rem;
}
.nav-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -.7rem;
  height: .7rem;
}
.nav-mega-head {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  border-bottom: 2px solid var(--accent, var(--c-yellow));
  transition: color .2s;
}
.nav-mega-col:nth-child(1) .nav-mega-head { border-color: var(--c-pink); }
.nav-mega-col:nth-child(2) .nav-mega-head { border-color: var(--c-yellow); }
.nav-mega-col:nth-child(3) .nav-mega-head { border-color: var(--c-blue); }
.nav-mega-head:hover { color: var(--c-orange); }
.nav-mega-col ul { list-style: none; display: grid; gap: .35rem; }
.nav-mega-col ul a {
  display: block;
  text-decoration: none;
  font-size: .85rem;
  color: var(--ink-60);
  padding: .3em 0;
  transition: color .2s, padding-left .2s;
}
.nav-mega-col ul a:hover { color: var(--ink); padding-left: .3em; }
.hover-caret {
  width: .42em; height: .42em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-15%);
  transition: transform .25s var(--ease);
}
.nav-item--services:hover .hover-caret,
.nav-item--services:focus-within .hover-caret,
.nav-item--services.is-open .hover-caret { transform: rotate(225deg) translateY(-15%); }

/* ---------- photo / video switch ---------- */
.mode-switch {
  position: relative;
  display: flex;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
}
.mode-btn {
  position: relative;
  z-index: 2;
  appearance: none;
  border: 0;
  background: none;
  font: 500 .85rem var(--font-sans);
  color: var(--ink-60);
  padding: .45em 1.4em;
  cursor: pointer;
  border-radius: 999px;
  transition: color .3s;
}
.mode-btn.is-active { color: var(--paper); }
.mode-indicator {
  position: absolute;
  z-index: 1;
  top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  background: var(--ink);
  border-radius: 999px;
  transition: transform .35s var(--ease);
}
:root[data-mode="video"] .mode-indicator { transform: translateX(100%); }

/* ---------- global photo / video content variants ----------
   Every page ships both a photo and a video treatment; the site
   shows whichever matches the current mode. Driven by <html
   data-mode>, set before paint, so there is no flash on load. */
:root[data-mode="photo"] .mode-video { display: none !important; }
:root[data-mode="video"] .mode-photo { display: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(4rem, 10vh, 7rem) var(--gutter) clamp(3rem, 8vh, 5rem);
  max-width: 80rem;
  margin: 0 auto;
}

.hero-kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 8.5vw, 7rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  max-width: 14ch;
}
.hero-line { display: block; overflow: hidden; }
.hero-amp { color: var(--ink-60); }
.hero-medium { font-style: italic; font-weight: 500; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}
.hero-intro {
  max-width: 34rem;
  color: var(--ink-60);
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: .75rem; }

.btn {
  display: inline-block;
  font: 500 .9rem var(--font-sans);
  text-decoration: none;
  border-radius: 999px;
  padding: .8em 1.7em;
  transition: transform .25s var(--ease), background .25s, color .25s;
  cursor: pointer;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--c-charcoal); }
.btn-ghost {
  border: 1px solid var(--ink-15);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-wide { width: 100%; border: 0; }

.hero-strip {
  display: flex;
  height: 4px;
  margin-top: clamp(3rem, 7vh, 5rem);
  border-radius: 2px;
  overflow: hidden;
}
.hero-strip span { flex: 1; }
.hero-strip span:last-child { flex: 2.2; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
  padding: 1.1rem 0;
  background: var(--paper-2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-60);
}
.marquee-track i {
  font-style: normal;
  font-size: .5rem;
  color: var(--c-orange);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-head {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.01em;
}
.section-index {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ink-60);
  vertical-align: super;
  margin-right: .5rem;
}
.section-note {
  font-size: .9rem;
  color: var(--ink-60);
  max-width: 26rem;
}

/* ============================================================
   GALLERY — masonry
   ============================================================ */
.work { padding: clamp(4rem, 9vh, 6rem) 0; }

.masonry {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  columns: 3;
  column-gap: 1.5rem;
}
@media (max-width: 56rem) { .masonry { columns: 2; } }
@media (max-width: 36rem) { .masonry { columns: 1; } }

.masonry.is-hidden { display: none; }

.tile {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.tile-media {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-2);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
/* real photography */
.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.tile:hover .tile-media img { transform: scale(1.03); }

/* aspect ratios */
.r-45  { aspect-ratio: 4 / 5; }
.r-34  { aspect-ratio: 3 / 4; }
.r-23  { aspect-ratio: 2 / 3; }
.r-11  { aspect-ratio: 1 / 1; }
.r-169 { aspect-ratio: 16 / 9; }
.r-916 { aspect-ratio: 9 / 16; }

.tile:hover .tile-media {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(22, 22, 26, .35);
}

.tile figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .15rem 0;
}
.tile-cat {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  border-bottom: 2px solid var(--c-yellow);
  padding-bottom: .15em;
}
.tile:nth-child(5n+2) .tile-cat { border-color: var(--c-pink); }
.tile:nth-child(5n+3) .tile-cat { border-color: var(--c-blue); }
.tile:nth-child(5n+4) .tile-cat { border-color: var(--c-purple); }
.tile:nth-child(5n)   .tile-cat { border-color: var(--c-orange); }

.tile-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--ink);
}

/* video tile chrome */
.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 3.2rem; height: 3.2rem;
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: var(--paper);
  background: rgba(22, 22, 26, .75);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: transform .35s var(--ease), background .35s;
}
.tile--video:hover .play-badge {
  transform: scale(1.12);
  background: var(--ink);
}
.tile-dur {
  position: absolute;
  right: .6rem; bottom: .6rem;
  font: 600 .7rem var(--font-sans);
  color: var(--paper);
  background: rgba(22, 22, 26, .75);
  padding: .2em .6em;
  border-radius: 3px;
}

/* portfolio selector — sliding segmented control */
.folio-filter {
  max-width: 80rem;
  margin: 0 auto 2.4rem;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
}
.folio-switch {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: 4px;
  background: var(--paper);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.folio-switch::-webkit-scrollbar { display: none; }
.folio-indicator {
  position: absolute;
  z-index: 1;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 0;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(0);
  transition: transform .4s var(--ease), width .4s var(--ease);
}
.folio-btn {
  position: relative;
  z-index: 2;
  appearance: none;
  border: 0;
  background: none;
  font: 500 .85rem var(--font-sans);
  color: var(--ink-60);
  padding: .6em 1.4em;
  cursor: pointer;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .3s;
}
.folio-btn:hover { color: var(--ink); }
.folio-btn.is-active { color: var(--paper); }
/* before JS positions the indicator, the active button still reads clearly */
.folio-switch.is-ready .folio-btn.is-active { color: var(--paper); }
.folio-switch:not(.is-ready) .folio-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}
.tile.is-filtered { display: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(4rem, 9vh, 6rem) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
}
.about-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 48rem) { .about-grid { grid-template-columns: 1fr; } }

.about-portrait img {
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.ph-note {
  font-size: .75rem;
  color: var(--ink-60);
  margin-top: .5rem;
}
.about-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  max-width: 30ch;
  margin-bottom: 2rem;
}
.about-facts {
  list-style: none;
  display: grid;
  gap: .8rem;
  font-size: .95rem;
  color: var(--ink-60);
}
.about-facts .u { color: var(--ink); font-weight: 500; }

/* prose blocks (about page body, blog fallback) */
.prose {
  max-width: 42rem;
  display: grid;
  gap: 1.1rem;
  color: var(--ink-60);
  font-size: 1rem;
}
.prose strong { color: var(--ink); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.section-title--light { color: var(--paper); }
.contact .section-index { color: rgba(250, 247, 241, .55); }

.contact-headline {
  max-width: 80rem;
  margin: 0 auto 3.5rem;
  padding: 0 var(--gutter);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -.015em;
}
.contact-headline .u--yellow { font-style: italic; }

.contact-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}
@media (max-width: 48rem) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form .field { margin-bottom: 1.4rem; }
.contact-form label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .65);
  margin-bottom: .45rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(250, 247, 241, .3);
  color: var(--paper);
  font: 400 1rem var(--font-sans);
  padding: .55em 0;
  border-radius: 0;
  transition: border-color .25s;
}
.contact-form select option { color: var(--ink); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--c-yellow);
}
.contact-form textarea { resize: vertical; }

.contact .btn-primary {
  background: var(--c-yellow);
  color: var(--ink);
  margin-top: .5rem;
}
.contact .btn-primary:hover { background: #f7d36e; }

.form-note {
  font-size: .8rem;
  color: rgba(250, 247, 241, .55);
  margin-top: .9rem;
  text-align: center;
}

.aside-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, .55);
  margin: 2rem 0 .5rem;
}
.aside-label:first-child { margin-top: 0; }

.contact-email {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-decoration: none;
  background-image: linear-gradient(var(--c-pink), var(--c-pink));
  background-repeat: no-repeat;
  background-size: 100% .12em;
  background-position: 0 95%;
}
.contact-socials {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  font-size: .95rem;
}
.contact-socials a {
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 247, 241, .35);
  padding-bottom: .1em;
  transition: border-color .25s;
}
.contact-socials li:nth-child(1) a:hover { border-color: var(--c-pink); }
.contact-socials li:nth-child(2) a:hover { border-color: var(--c-blue); }
.contact-socials li:nth-child(3) a:hover { border-color: var(--c-yellow); }

.aside-text { color: rgba(250, 247, 241, .75); font-size: .95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
  font-size: .8rem;
  color: var(--ink-60);
  background: var(--paper);
}
.site-footer a { color: var(--ink-60); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.footer-nav { display: flex; gap: 1.2rem; }

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   Landing pages — shared components for the three service pages.
     .lp--portraits  → pink / purple
     .lp--weddings   → yellow / orange
     .lp--events     → blue / charcoal
   ============================================================ */

.lp--portraits { --accent: var(--c-pink);   --accent-2: var(--c-purple); }
.lp--weddings  { --accent: var(--c-yellow); --accent-2: var(--c-orange); }
.lp--events    { --accent: var(--c-blue);   --accent-2: var(--c-charcoal); }
.lp--lemon     { --accent: var(--c-yellow); --accent-2: var(--c-orange); }

.u--accent   { background-image: linear-gradient(var(--accent), var(--accent)); }
.u--accent-2 { background-image: linear-gradient(var(--accent-2), var(--accent-2)); }

/* ---------- service switcher ---------- */
.svc-switch {
  display: flex;
  gap: .4rem;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
}
.svc-switch a {
  font: 500 .82rem var(--font-sans);
  text-decoration: none;
  color: var(--ink-60);
  padding: .45em 1.1em;
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.svc-switch a:hover { color: var(--ink); }
.svc-switch a.is-current {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- breadcrumb kicker ---------- */
.lp-crumb {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 1.6rem;
}
.lp-crumb a { color: inherit; text-decoration: none; }
.lp-crumb a:hover { color: var(--ink); }
.lp-crumb .sep { margin: 0 .5em; color: var(--accent); }

/* ============================================================
   SPLIT HERO
   ============================================================ */
.lp-hero-split {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter) clamp(3rem, 7vh, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 52rem) { .lp-hero-split { grid-template-columns: 1fr; } }

.lp-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
}
.lp-lede {
  color: var(--ink-60);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.lp-hero-aside img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.lp-hero-aside .ph-note { text-align: right; }

/* ============================================================
   FULL-BLEED HERO
   ============================================================ */
.lp-hero-full {
  padding: clamp(3rem, 8vh, 5.5rem) var(--gutter) 0;
  max-width: 86rem;
  margin: 0 auto;
  text-align: center;
}
.lp-hero-full .lp-crumb { margin-bottom: 1.2rem; }
.lp-hero-full .svc-switch { margin: 0 auto; width: max-content; }
.lp-hero-full .lp-title { max-width: 18ch; margin-inline: auto; }
.lp-hero-full .lp-lede { margin-inline: auto; text-align: center; }
.lp-hero-full .lp-hero-actions { justify-content: center; margin-bottom: clamp(2.5rem, 6vh, 4rem); }

.lp-hero-banner { position: relative; }
.lp-hero-banner img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
@media (max-width: 44rem) { .lp-hero-banner img { aspect-ratio: 4 / 3; } }
.lp-hero-banner .ph-note { text-align: left; }

/* ============================================================
   DARK HERO
   ============================================================ */
.lp-hero-dark {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 9vh, 6rem) 0 clamp(3rem, 8vh, 5rem);
}
.lp-hero-dark .lp-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.lp-hero-dark .lp-crumb { color: rgba(250, 247, 241, .55); }
.lp-hero-dark .lp-crumb a:hover { color: var(--paper); }
.lp-hero-dark .lp-lede { color: rgba(250, 247, 241, .7); }
.lp-hero-dark .btn-ghost {
  color: var(--paper);
  border-color: rgba(250, 247, 241, .3);
}
.lp-hero-dark .btn-ghost:hover { border-color: var(--paper); }
.lp-hero-dark .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.lp-hero-dark .btn-primary:hover { background: color-mix(in srgb, var(--accent) 85%, white); }
.lp-hero-dark .svc-switch {
  background: rgba(250, 247, 241, .06);
  border-color: rgba(250, 247, 241, .2);
}
.lp-hero-dark .svc-switch a { color: rgba(250, 247, 241, .65); }
.lp-hero-dark .svc-switch a:hover { color: var(--paper); }
.lp-hero-dark .svc-switch a.is-current {
  background: var(--accent);
  color: var(--ink);
}

/* stats row */
.lp-stats {
  max-width: 80rem;
  margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(250, 247, 241, .15);
  padding-top: 2rem;
}
.lp-stat b {
  display: block;
  font: 400 clamp(1.8rem, 3.5vw, 2.6rem) var(--font-serif);
  border-bottom: 3px solid var(--accent);
  width: max-content;
  padding-bottom: .1em;
  margin-bottom: .4rem;
}
.lp-stat span { font-size: .85rem; color: rgba(250, 247, 241, .65); }

/* ============================================================
   GENERIC LANDING SECTIONS
   ============================================================ */
.lp-section { padding: clamp(3.5rem, 8vh, 5.5rem) 0; }
.lp-section--tint {
  background: var(--paper-2);
  border-top: 1px solid var(--ink-15);
  border-bottom: 1px solid var(--ink-15);
}
.lp-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- offer cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: 6px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -22px rgba(22, 22, 26, .3);
}
.card-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
  border-bottom: 2px solid var(--accent);
  width: max-content;
  padding-bottom: .2em;
}
.card:nth-child(2n) .card-tag { border-color: var(--accent-2); }
.card h3 {
  font: 400 1.45rem var(--font-serif);
  letter-spacing: -.01em;
}
.card p { font-size: .92rem; color: var(--ink-60); flex: 1; }
.card-meta {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid var(--ink-15);
  padding-top: .9rem;
}
.card-meta a { text-decoration: none; }
.card-meta a:hover { color: var(--accent-2); }

/* ---------- numbered process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step { counter-increment: step; }
.step::before {
  content: "0" counter(step);
  display: block;
  font: 400 2.2rem var(--font-serif);
  color: var(--accent);
  margin-bottom: .6rem;
}
.lp--weddings .step::before { color: var(--accent-2); }
.step h3 { font: 400 1.25rem var(--font-serif); margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--ink-60); }

/* ---------- timeline ---------- */
.timeline {
  position: relative;
  display: grid;
  gap: 2.2rem;
  max-width: 44rem;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: .35rem; top: .4rem; bottom: .4rem;
  width: 2px;
  background: linear-gradient(var(--c-yellow), var(--c-orange), var(--c-pink));
}
.tl-item { position: relative; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -2rem; top: .45rem;
  width: .8rem; height: .8rem;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--accent);
}
.tl-item:nth-child(2)::before { border-color: var(--accent-2); }
.tl-item:nth-child(3)::before { border-color: var(--c-pink); }
.tl-item:nth-child(4)::before { border-color: var(--c-purple); }
.tl-time {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.tl-item h3 { font: 400 1.35rem var(--font-serif); margin: .2rem 0 .3rem; }
.tl-item p { font-size: .92rem; color: var(--ink-60); max-width: 38rem; }

/* ---------- mini gallery grids ---------- */
.lp-gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.lp-gallery .tile { margin-bottom: 0; }

/* ---------- quote / testimonial ---------- */
.quote {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote {
  font: italic 400 clamp(1.4rem, 3vw, 2.1rem) var(--font-serif);
  line-height: 1.35;
  letter-spacing: -.01em;
}
.quote blockquote .u { font-style: italic; }
.quote cite {
  display: block;
  margin-top: 1.2rem;
  font: 500 .85rem var(--font-sans);
  color: var(--ink-60);
}

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; }
.faq details {
  border-bottom: 1px solid var(--ink-15);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font: 400 1.15rem var(--font-serif);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-sans);
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding-top: .7rem;
  font-size: .92rem;
  color: var(--ink-60);
  max-width: 40rem;
}

/* ---------- availability note ---------- */
.avail-note {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: .5em 1.1em;
  margin-bottom: 1.4rem;
  background: var(--paper);
}
.avail-dot {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--accent, var(--c-yellow));
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 9vh, 6rem) 0;
}
.cta-band .lp-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 48rem) { .cta-band .lp-wrap { grid-template-columns: 1fr; } }
.cta-band .lp-wrap--center { display: block; text-align: center; }
.cta-band .lp-wrap--center .cta-sub { margin: 0 auto 2rem; }

.cta-band h2 {
  font: 400 clamp(2rem, 5vw, 3.6rem) var(--font-serif);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 1.2rem;
}
.cta-band .cta-sub {
  color: rgba(250, 247, 241, .65);
  font-size: .95rem;
  max-width: 30rem;
}
.cta-band .contact-form label { color: rgba(250, 247, 241, .65); }
.cta-band .btn-primary {
  background: var(--accent, var(--c-yellow));
  border-color: var(--accent, var(--c-yellow));
  color: var(--ink);
  margin-top: .5rem;
}
.cta-band .btn-primary:hover { background: color-mix(in srgb, var(--accent, var(--c-yellow)) 85%, white); }
.cta-band .avail-note {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250, 247, 241, .25);
}

/* client logo strip */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
}
.logo-ph {
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed var(--ink-15);
  border-radius: 4px;
  padding: 1.4rem .5rem;
  font: 500 .85rem var(--font-serif);
  color: var(--ink-60);
}

.lp-section .section-head { margin-bottom: 2rem; }

@media (max-width: 44rem) {
  .svc-switch { order: 2; }
}

/* ============================================================
   MOBILE HEADER + NAV
   Desktop keeps the hover mega-menu. On mobile the nav collapses
   into a hamburger-triggered slide-down panel, and the Services
   mega becomes a tap accordion. The photo/video switch stays
   visible in the top bar at every size.
   ============================================================ */
@media (min-width: 48.01rem) {
  /* keep the Services toggle inert on desktop (hover drives it) */
  .nav-services-toggle { pointer-events: none; }
  .nav-item--services { pointer-events: auto; }
  .nav-item--services > .nav-services-toggle { pointer-events: auto; }
}

@media (max-width: 48rem) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .site-header { position: sticky; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(88vw, 22rem);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 1.5rem 2rem;
    background: var(--paper);
    border-left: 1px solid var(--ink-15);
    box-shadow: -20px 0 60px -30px rgba(22, 22, 26, .4);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 45;
    font-size: 1rem;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }

  /* dim the page behind the panel */
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 44;
  }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

  .site-nav > .nav-link,
  .nav-cta,
  .nav-services-toggle {
    padding: .9rem .25rem;
    border-bottom: 1px solid var(--ink-15);
    width: 100%;
    justify-content: space-between;
    text-align: left;
    font-size: 1.05rem;
  }
  .nav-cta {
    border: 1px solid var(--ink);
    border-radius: 999px;
    justify-content: center;
    padding: .8em 1.1em;
    margin-top: 1.2rem;
  }

  /* Services accordion on mobile */
  .nav-mega {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    display: none;
    grid-template-columns: 1fr;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: .25rem 0 .5rem .5rem;
    gap: 1rem;
  }
  .nav-item--services.is-open .nav-mega { display: grid; visibility: visible; }
  .nav-item--services:hover .nav-mega,
  .nav-item--services:focus-within .nav-mega { transform: none; }
  .nav-item--services::after { content: none; }
  .nav-services-toggle[aria-expanded="true"] .hover-caret { transform: rotate(225deg) translateY(-15%); }
  .nav-mega-head { border-bottom-width: 1px; }
}

/* ============================================================
   Trust / pricing / location components
   ============================================================ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.6rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: .45em 1em;
  background: var(--paper);
  color: var(--ink-60);
}
.trust-pill b { color: var(--ink); font-weight: 600; }
.trust-pill .star { color: var(--c-yellow); }

.review-card blockquote {
  font: italic 400 1.05rem var(--font-serif);
  line-height: 1.5;
  flex: 1;
}
.review-card cite {
  font: 500 .82rem var(--font-sans);
  font-style: normal;
  color: var(--ink-60);
  border-top: 1px solid var(--ink-15);
  padding-top: .9rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
}
.chip {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-60);
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: .4em 1em;
  background: var(--paper);
  transition: border-color .25s, color .25s;
}
.chip:hover { border-color: var(--accent, var(--c-yellow)); color: var(--ink); }
.chip--home {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.card--featured { border-color: var(--ink); position: relative; }
.card--featured::before {
  content: "Most booked";
  position: absolute;
  top: -0.7em; left: 1.2rem;
  font: 600 .65rem var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--c-yellow);
  color: var(--ink);
  padding: .25em .8em;
  border-radius: 999px;
}
.price {
  font: 400 1.9rem var(--font-serif);
  letter-spacing: -.01em;
}
.price small {
  font: 500 .8rem var(--font-sans);
  color: var(--ink-60);
}
.card ul.includes {
  list-style: none;
  display: grid;
  gap: .45rem;
  font-size: .88rem;
  color: var(--ink-60);
}
.card ul.includes li::before {
  content: "\2014";
  color: var(--accent, var(--c-yellow));
  margin-right: .5em;
}

/* ============================================================
   Studio grid + blog + map
   ============================================================ */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  margin-top: clamp(2rem, 5vh, 3.5rem);
}
@media (max-width: 56rem) { .studio-grid { grid-template-columns: repeat(4, 1fr); } .studio-grid figure:nth-child(n+9) { display: none; } }

.studio-grid figure { margin: 0; }
.studio-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.grid-explore a { position: relative; display: block; text-decoration: none; }
.explore-label { display: none; }

@media (max-width: 36rem) {
  .studio-grid { grid-template-columns: 1fr; }
  .studio-grid figure:nth-child(n+2) { display: none; }

  .explore-label {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    position: absolute;
    inset: 0;
    padding: 1.1rem 1.2rem;
    border-radius: 4px;
    background: linear-gradient(to top, rgba(10, 10, 12, .65) 0%, rgba(10, 10, 12, 0) 45%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .04em;
  }
  .explore-label::after { content: "\2192"; font-weight: 400; }
}

/* blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card .tile-media { aspect-ratio: 16 / 10; margin-bottom: .7rem; border-radius: 4px; }
.blog-card time {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.blog-card h3 {
  font: 400 1.15rem var(--font-serif);
  line-height: 1.35;
  margin-top: .25rem;
  transition: color .2s;
}
.blog-card:hover h3 { color: var(--c-orange); }
.blog-card .excerpt {
  font-size: .88rem;
  color: var(--ink-60);
  margin-top: .4rem;
}
/* text-only blog teasers (no images) used in service-page "From the
   blog" sections and anywhere a thumbnail isn't wanted */
.blog-grid--text .blog-card {
  background: var(--paper);
  border: 1px solid var(--ink-15);
  border-radius: 6px;
  padding: 1.4rem 1.5rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.blog-grid--text .blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent, var(--c-yellow));
  box-shadow: 0 16px 36px -20px rgba(22, 22, 26, .3);
}
.blog-grid--text .blog-card .tile-cat {
  border-bottom: 2px solid var(--accent, var(--c-yellow));
  padding-bottom: .15em;
}
.blog-grid--text .blog-card h3 { margin-top: .6rem; }

.blog-empty {
  border: 1px dashed var(--ink-15);
  border-radius: 6px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--ink-60);
}

/* map / location block */
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 48rem) { .map-grid { grid-template-columns: 1fr; } }
.map-ph, .map-grid iframe {
  aspect-ratio: 16 / 10;
  width: 100%;
  border: 0;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font: 500 .85rem var(--font-sans);
  color: var(--ink-60);
  background: var(--paper);
}
.map-ph { border: 1px dashed var(--ink-15); }
.address-card { display: grid; gap: .9rem; }
.address-card .addr { font: 400 1.4rem var(--font-serif); }
.walk-list { list-style: none; display: grid; gap: .5rem; font-size: .92rem; color: var(--ink-60); }
.walk-list b { color: var(--ink); font-weight: 600; }

/* ============================================================
   SINGLE POST / ARTICLE
   ============================================================ */
.article {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 5rem) var(--gutter);
}
.article-kicker {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 1.2rem;
}
.article-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin-bottom: 1rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: var(--ink-60);
  padding-bottom: 1.6rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--c-yellow);
}
.article-hero { margin-bottom: 2.2rem; }
.article-hero img { border-radius: 6px; width: 100%; }

.entry-content > * { margin-bottom: 1.15rem; }
.entry-content h2, .entry-content h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.01em;
  margin-top: 2.2rem;
}
.entry-content h2 { font-size: 1.7rem; }
.entry-content h3 { font-size: 1.35rem; }
.entry-content p, .entry-content li { color: rgba(22, 22, 26, .8); }
.entry-content a { text-decoration-color: var(--c-yellow); text-decoration-thickness: 2px; }
.entry-content ul, .entry-content ol { padding-left: 1.3rem; }
.entry-content blockquote {
  border-left: 3px solid var(--c-yellow);
  padding-left: 1.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}
.entry-content img { border-radius: 4px; }

.post-nav {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 var(--gutter) 4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .88rem;
}
.post-nav a { text-decoration: none; color: var(--ink-60); }
.post-nav a:hover { color: var(--ink); }

/* pagination */
.pagination {
  max-width: 80rem;
  margin: 2.5rem auto 0;
  padding: 0 var(--gutter);
  display: flex;
  gap: .5rem;
  font-size: .88rem;
}
.pagination .page-numbers {
  text-decoration: none;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  padding: .35em 1em;
  color: var(--ink-60);
}
.pagination .page-numbers.current {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.pagination a.page-numbers:hover { border-color: var(--ink); color: var(--ink); }

/* 404 */
.error-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(4rem, 12vh, 8rem) var(--gutter);
  text-align: center;
}
.error-page h1 {
  font: 400 clamp(3rem, 9vw, 6rem) var(--font-serif);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.error-page p { color: var(--ink-60); margin-bottom: 2rem; }
