:root {
  --ink: #161310;
  --ink-2: #211c16;
  --ink-soft: #2b2620;
  --paper: #f4ede1;
  --paper-2: #ece1d0;
  --brass: #b58a4a;
  --brass-bright: #d8ac63;
  --muted: #6c6457;
  --muted-light: rgba(244,237,225,.66);
  --white: #ffffff;
  --line: rgba(22,19,16,.13);
  --line-light: rgba(244,237,225,.16);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ink);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--brass); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; z-index: 50; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 6vw; color: var(--paper);
  background: linear-gradient(to bottom, rgba(12,11,9,.72), transparent);
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.scrolled {
  padding: 14px 6vw;
  background: rgba(18,16,13,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-light);
}
.logo {
  font-family: var(--serif); font-weight: 600; font-size: 19px;
  letter-spacing: .5px; font-optical-sizing: auto;
}
.logo a { display: inline-block; }
nav { display: flex; gap: 30px; font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 600; }
nav a { position: relative; padding: 4px 0; color: var(--paper); opacity: .82; transition: opacity .25s; }
nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--brass-bright); transition: width .3s var(--ease);
}
nav a:hover { opacity: 1; }
nav a:hover::after { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 150px 6vw 90px; color: var(--paper); overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 28%, rgba(181,138,74,.28), transparent 52%),
    linear-gradient(104deg, rgba(14,12,10,.96) 18%, rgba(14,12,10,.58) 62%, rgba(14,12,10,.3)),
    url('https://images.unsplash.com/photo-1518391846015-55a9cc003b25?auto=format&fit=crop&w=1900&q=80') center 30%/cover no-repeat fixed;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 880px; }
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  text-transform: uppercase; letter-spacing: 3px; color: var(--brass-bright);
  font-size: 12px; font-weight: 700; margin: 0 0 24px;
}
.eyebrow-rule { display: inline-block; width: 38px; height: 1px; background: var(--brass); }
h1 {
  font-family: var(--serif); font-weight: 500; font-optical-sizing: auto;
  font-size: clamp(64px, 11vw, 168px); line-height: .9; letter-spacing: -1px;
  margin: 0 0 30px; color: var(--paper);
}
.hero-script { font-style: italic; font-weight: 400; color: var(--brass-bright); }
.headline {
  font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2.5vw, 33px);
  line-height: 1.32; max-width: 760px; margin: 0 0 22px; color: var(--paper);
}
.intro { font-size: 16px; line-height: 1.8; max-width: 560px; color: var(--muted-light); margin: 0; }
.buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn {
  border: 1px solid rgba(244,237,225,.42); padding: 15px 30px; text-transform: uppercase;
  font-size: 11.5px; letter-spacing: 2px; font-weight: 700; border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: rgba(244,237,225,.1); border-color: var(--paper); transform: translateY(-2px); }
.btn.primary { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn.primary:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--ink); }
.hero-meta {
  position: relative; z-index: 1; display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 22px; border-top: 1px solid var(--line-light);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-light); font-weight: 600;
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--ink-2); color: var(--paper); display: flex; align-items: center; gap: 28px;
  padding: 44px 6vw; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
}
.quote-mark { color: var(--brass); font-family: var(--serif); font-size: 96px; line-height: .7; font-weight: 600; }
.quote-band p { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 28px); font-style: italic; font-weight: 400; flex: 1; margin: 0; line-height: 1.3; }
.quote-band a { color: var(--brass-bright); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; white-space: nowrap; transition: color .25s; }
.quote-band a:hover { color: var(--paper); }

/* ---------- Sections ---------- */
section { padding: 110px 6vw; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-title { max-width: 1100px; }
.section-title.narrow { max-width: 760px; }
.section-title h2, .creative h2, .featured h2, .contact h2 {
  font-family: var(--serif); font-weight: 400; font-optical-sizing: auto;
  font-size: clamp(32px, 4.4vw, 60px); line-height: 1.04; letter-spacing: -.5px; margin: 0 0 26px;
}
.section-title p:not(.eyebrow), .creative > div p, .featured p { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 640px; }
.section-dark .eyebrow { color: var(--brass-bright); }
.section-dark .section-title p:not(.eyebrow),
.section-dark .creative > div p,
.section-dark.contact .section-title p { color: var(--muted-light); }
.section-light .eyebrow { color: var(--brass); }
.section-light .eyebrow-rule, .section-dark .eyebrow-rule { background: var(--brass); }

/* ---------- About / focus ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 56px; }
.focus-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.focus-grid li { background: var(--paper); padding: 36px 30px 40px; position: relative; transition: background .35s var(--ease); }
.focus-grid li:hover { background: var(--paper-2); }
.focus-num { font-family: var(--serif); font-size: 15px; font-weight: 600; color: var(--brass); display: block; margin-bottom: 26px; letter-spacing: 1px; }
.focus-grid h3 { font-family: var(--sans); text-transform: uppercase; font-size: 13px; letter-spacing: 1.4px; font-weight: 700; margin: 0 0 14px; }
.focus-grid p { line-height: 1.65; color: var(--muted); font-size: 14px; margin: 0; }

h3 { margin: 0 0 12px; font-size: 19px; font-weight: 600; }

/* ---------- Writing ---------- */
.card-feature {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; margin-top: 40px;
  background: var(--ink-2); border: 1px solid var(--line-light); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.card-feature:hover { transform: translateY(-4px); border-color: rgba(216,172,99,.5); }
.card-feature .card-img { height: 100%; min-height: 340px; }
.card-feature .card-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.card-feature h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.8vw, 38px); line-height: 1.12; margin: 16px 0 16px; color: var(--paper); }
.card-feature p { color: var(--muted-light); font-size: 16px; line-height: 1.7; margin: 0 0 26px; }
.card-link { color: var(--brass-bright); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; }

.cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 16px; }
.card {
  background: var(--ink-2); color: var(--paper); display: flex; flex-direction: column;
  border: 1px solid var(--line-light); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.cards .card:hover { transform: translateY(-4px); border-color: rgba(216,172,99,.5); }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-tag { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 700; color: var(--brass-bright); margin-bottom: 12px; }
.cards .card h3 { font-family: var(--serif); font-weight: 500; font-size: 18px; line-height: 1.18; margin: 0 0 10px; color: var(--paper); }
.cards .card p { line-height: 1.55; color: var(--muted-light); font-size: 13.5px; margin: 0; }
.card-img { background-size: cover; background-position: center; height: 158px; filter: grayscale(.28) contrast(1.04); transition: filter .5s var(--ease), transform .8s var(--ease); }
.card:hover .card-img { filter: grayscale(0) contrast(1.04); transform: scale(1.04); }
.img-1 { background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=800&q=80'); }
.img-2 { background-image: url('https://images.unsplash.com/photo-1505686994434-e3cc5abf1330?auto=format&fit=crop&w=800&q=80'); }
.img-3 { background-image: url('https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?auto=format&fit=crop&w=800&q=80'); }
.img-4 { background-image: url('https://images.unsplash.com/photo-1485871981521-5b1fd3805eee?auto=format&fit=crop&w=800&q=80'); }
.img-5 { background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?auto=format&fit=crop&w=1100&q=80'); }
.img-6 { background-image: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?auto=format&fit=crop&w=800&q=80'); }

/* ---------- Projects ---------- */
.experience-grid {
  list-style: none; margin: 44px 0 0; padding: 0;
  border-top: 1px solid var(--line);
}
.experience-grid li {
  display: grid; grid-template-columns: 180px 1.1fr 1.6fr; gap: 30px; align-items: baseline;
  padding: 30px 4px; border-bottom: 1px solid var(--line); transition: padding-left .35s var(--ease);
}
.experience-grid li:hover { padding-left: 16px; }
.exp-year { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; color: var(--brass); }
.experience-grid h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.2vw, 30px); margin: 0; }
.experience-grid p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------- Creative ---------- */
.creative { display: grid; grid-template-columns: .9fr 1.5fr; gap: 60px; align-items: center; }
.creative-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.creative-strip span {
  min-height: 168px; display: flex; align-items: flex-end; padding: 20px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 13px;
  background: linear-gradient(160deg, rgba(181,138,74,.4), rgba(244,237,225,.04));
  border: 1px solid var(--line-light); transition: transform .4s var(--ease), background .4s var(--ease);
}
.creative-strip span:hover { transform: translateY(-6px); background: linear-gradient(160deg, rgba(216,172,99,.6), rgba(244,237,225,.08)); }

/* ---------- Featured ---------- */
.featured { background: var(--paper-2); }
.featured-inner { max-width: 800px; margin: 0 auto; }
.featured-inner h2 { font-size: clamp(34px, 5vw, 64px); }
.featured-lead { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 27px) !important; line-height: 1.45 !important; color: var(--ink-soft) !important; max-width: 760px !important; margin: 0 0 28px; }
.featured p { font-size: 17px; line-height: 1.85; color: var(--muted); max-width: 760px; margin: 0 0 22px; }
.featured em { font-style: italic; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.contact h2 { font-size: clamp(30px, 3.6vw, 50px); }
.contact-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
.contact-links a {
  border: 1px solid var(--line-light); padding: 15px 26px; text-transform: uppercase;
  letter-spacing: 1.8px; font-weight: 700; font-size: 12px; border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.contact-links a:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { background-attachment: scroll; }
}

/* ---------- Writing article (story) pages ---------- */
.story { max-width: 760px; margin: 0 auto; padding: 160px 6vw 80px; background: var(--paper); }
.story-title { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 60px); line-height: 1.08; letter-spacing: -.5px; color: var(--ink); margin: 14px 0 36px; }
.story p { font-family: var(--serif); font-weight: 300; font-size: 19px; line-height: 1.85; color: var(--ink-soft); max-width: 720px; margin: 0 0 24px; }
.story-tags { font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .3px; color: var(--brass); line-height: 1.9; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.story-back { margin-top: 44px; }
.story-back a { color: var(--brass); text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; }

/* ---------- Share ---------- */
.share { max-width: 760px; margin: 0 auto; padding: 28px 6vw 8px; background: var(--paper); }
.share-title { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); margin: 0 0 18px; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.share-btn { display: inline-flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); padding: 11px 18px; border-radius: 999px; font-family: var(--sans); font-size: 14px; font-weight: 700; line-height: 1; cursor: pointer; transition: border-color .15s, color .15s, background .15s, transform .15s; }
.share-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.share-btn:hover { border-color: var(--brass); transform: translateY(-1px); }
.share-linkedin:hover { background: #0a66c2; border-color: #0a66c2; color: var(--white); }
.share-x:hover { background: #000; border-color: #000; color: var(--white); }
.share-facebook:hover { background: #1877f2; border-color: #1877f2; color: var(--white); }
.share-instagram:hover { background: #d62976; border-color: #d62976; color: var(--white); }
.share-email:hover { background: var(--muted); border-color: var(--muted); color: var(--white); }
.share-copy:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }
.share-status { margin: 14px 0 0; min-height: 18px; font-size: 14px; color: var(--brass); font-weight: 700; }

/* ---------- Engagement ---------- */
.engagement { max-width: 760px; margin: 0 auto; padding: 0 6vw 90px; background: var(--paper); }
.reactions { display: flex; gap: 14px; padding: 26px 0 34px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.reaction-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); padding: 11px 20px; border-radius: 999px; font-family: var(--sans); font-size: 14px; font-weight: 700; cursor: pointer; transition: border-color .15s, color .15s, background .15s; }
.reaction-btn:hover { border-color: var(--brass); }
.reaction-btn .reaction-icon { font-size: 12px; }
.reaction-btn .reaction-count { color: var(--muted); font-weight: 700; }
.reaction-btn.active { background: var(--brass); border-color: var(--brass); color: var(--white); }
.reaction-btn.active .reaction-count { color: var(--white); }
.reaction-btn:disabled { opacity: .6; cursor: default; }
.engagement-title { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 36px); color: var(--ink); margin: 0 0 24px; }
.comment-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.comment-form input, .comment-form textarea { font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 13px 16px; width: 100%; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--brass); }
.comment-form textarea { resize: vertical; line-height: 1.6; }
.comment-form-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.comment-form .btn { background: var(--brass); border: 1px solid var(--brass); color: var(--white); border-radius: 999px; cursor: pointer; padding: 13px 28px; }
.comment-form .btn:hover { background: var(--brass-bright); border-color: var(--brass-bright); }
.comment-form .btn:disabled { opacity: .6; cursor: default; }
.comment-status { margin: 0; font-size: 14px; color: var(--muted); }
.comment-status.error { color: #b3431f; }
.comment-empty { color: var(--muted); font-size: 15px; }
.comment-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.comment { border-top: 1px solid var(--line); padding-top: 22px; }
.comment-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.comment-author { font-weight: 700; color: var(--ink); font-size: 15px; }
.comment-date { color: var(--muted); font-size: 12px; letter-spacing: .5px; }
.comment-body { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer { padding: 34px 20px; text-align: center; color: var(--muted-light); letter-spacing: 2.5px; text-transform: uppercase; font-size: 11px; background: var(--ink); border-top: 1px solid var(--line-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .card-feature { grid-template-columns: 1fr; }
  .card-feature .card-img { min-height: 240px; }
  .experience-grid li { grid-template-columns: 130px 1fr; row-gap: 8px; }
  .experience-grid li > p { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .site-header { flex-direction: column; gap: 14px; padding: 18px; }
  .site-header.scrolled { padding: 12px 18px; }
  nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .hero { background-attachment: scroll; padding-top: 180px; min-height: auto; }
  .about, .creative, .contact { grid-template-columns: 1fr; gap: 40px; }
  .creative-strip { grid-template-columns: repeat(3, 1fr); }
  .quote-band { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quote-mark { font-size: 64px; }
  section { padding: 80px 6vw; }
}
@media (max-width: 560px) {
  .focus-grid, .cards, .creative-strip { grid-template-columns: 1fr; }
  .experience-grid li { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px; }
}

/* ---------- Site share (homepage button, dialog & footer) ---------- */
.btn-share {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  background: var(--brass); border-color: var(--brass); color: var(--ink);
}
.btn-share svg { width: 16px; height: 16px; fill: currentColor; }
.btn-share:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--ink); }

/* Extra platform hovers reusing the existing .share-btn styling */
.share-whatsapp:hover { background: #25d366; border-color: #25d366; color: var(--white); }
.share-imessage:hover { background: #34c759; border-color: #34c759; color: var(--white); }
.share-instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743; color: var(--white);
}

/* Share dialog */
.share-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.share-modal[hidden] { display: none; }
.share-modal-backdrop { position: absolute; inset: 0; background: rgba(12,11,9,.66); backdrop-filter: blur(3px); }
.share-modal-panel {
  position: relative; z-index: 1; width: 100%; max-width: 480px;
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  border-radius: 16px; padding: 34px 32px 30px; box-shadow: 0 30px 80px rgba(12,11,9,.45);
}
.share-modal-panel .eyebrow { margin: 0 0 12px; }
.share-modal-title { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 30px); color: var(--ink); margin: 0 0 8px; }
.share-modal-sub { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; }
.share-modal-close {
  position: absolute; top: 14px; right: 16px; width: 36px; height: 36px; line-height: 1;
  border: 1px solid var(--line); background: var(--white); color: var(--ink-soft);
  border-radius: 999px; font-size: 22px; cursor: pointer; transition: border-color .15s, color .15s, background .15s;
}
.share-modal-close:hover { border-color: var(--brass); color: var(--brass); }
.share-modal-panel .share-buttons { gap: 10px; }
.share-modal-panel .share-status { margin-top: 16px; }
body.share-modal-open { overflow: hidden; }

/* Instagram Post / Story chooser (built by ig-share.js) */
.ig-share-overlay {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(12,11,9,.66);
}
.ig-share-panel {
  position: relative; width: 100%; max-width: 360px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 24px 22px; text-align: center;
  box-shadow: 0 24px 60px rgba(12,11,9,.45);
}
.ig-share-heading {
  font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink);
  margin: 0 0 6px;
}
.ig-share-sub { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 20px; }
.ig-choices { display: flex; gap: 12px; }
.ig-choice {
  flex: 1; display: flex; flex-direction: column; gap: 4px; align-items: center;
  padding: 16px 12px; cursor: pointer;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); transition: border-color .2s, background .2s, transform .12s;
}
.ig-choice:hover { border-color: var(--brass); background: var(--paper); transform: translateY(-1px); }
.ig-choice:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.ig-choice-label { font-family: var(--serif); font-weight: 600; font-size: 17px; }
.ig-choice-sub { font-size: 12px; color: var(--muted); }
.ig-share-cancel {
  margin-top: 18px; padding: 8px 18px; cursor: pointer; font-size: 14px;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); transition: color .2s, border-color .2s;
}
.ig-share-cancel:hover { color: var(--ink); border-color: var(--brass); }

/* Footer with share options */
.site-footer {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  text-transform: none; letter-spacing: normal;
}
.footer-share { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-share-label {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: var(--brass-bright);
}
.site-footer .share-buttons.compact { justify-content: center; gap: 10px; }
.site-footer .share-btn {
  background: rgba(244,237,225,.06); border-color: var(--line-light); color: var(--paper);
}
.site-footer .share-btn:hover { color: var(--white); }
.share-btn.icon-only { padding: 11px; border-radius: 50%; }
.share-btn.icon-only span {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.footer-copy {
  margin: 0; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted-light);
}

@media (max-width: 560px) {
  .share-modal-panel .share-buttons { justify-content: center; }
}
