:root {
  color-scheme: light;
  --bg: #faf9f5;
  --surface: #ffffff;
  --surface-muted: #eef4f1;
  --ink: #1c2724;
  --muted: #596861;
  --line: #dce4de;
  --brand: #113d35;
  --brand-strong: #0b2d27;
  --terracotta: #c65d3b;
  --blue: #2c5f73;
  --gold: #d2a24c;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(20, 33, 29, 0.13);
}

html.dark {
  color-scheme: dark;
  --bg: #111715;
  --surface: #18211e;
  --surface-muted: #202c28;
  --ink: #f3f2ee;
  --muted: #bcc8c1;
  --line: #34423d;
  --brand: #9bc9b8;
  --brand-strong: #dceee7;
  --terracotta: #e18a67;
  --blue: #89bfd0;
  --gold: #e2bd69;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 182px;
  height: auto;
  border-radius: 0;
}

html.dark .brand img,
html.dark .footer-brand img {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-strong);
  border-bottom-color: var(--terracotta);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--terracotta);
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brand-strong);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 37, 32, 0.92), rgba(8, 37, 32, 0.7) 42%, rgba(8, 37, 32, 0.12)),
    linear-gradient(0deg, rgba(8, 37, 32, 0.18), rgba(8, 37, 32, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 96px 0 88px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f0c8ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--brand-strong);
  line-height: 1.08;
  text-wrap: balance;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 5rem;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--terracotta);
  color: var(--white);
}

.button.primary:hover {
  background: #aa492c;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.section {
  padding: 82px 0;
}

.intro-band {
  padding: 56px 0;
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 42px;
  align-items: start;
}

.intro-grid h2,
.section-header h2,
.split-layout h2,
.closing-content h2,
.page-hero h1 {
  font-size: 2.9rem;
}

.intro-grid p:last-child,
.split-layout p,
.closing-content p,
.text-layout p,
.program-card p,
.program-row p,
.event-row p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-header {
  max-width: 680px;
  margin-bottom: 34px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.program-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  color: var(--terracotta);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.program-card p {
  margin-bottom: 0;
}

.muted-section {
  background: var(--surface-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 10px;
  color: var(--brand-strong);
  font-weight: 800;
  border-bottom: 2px solid var(--terracotta);
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.event-row.large {
  grid-template-columns: 220px minmax(0, 1fr);
  padding: 30px;
}

.event-row time {
  color: var(--blue);
  font-weight: 850;
}

.event-row h2,
.event-row h3 {
  margin-bottom: 8px;
}

.event-row h2 {
  font-size: 1.7rem;
}

.event-row h3 {
  font-size: 1.2rem;
}

.event-row p {
  margin-bottom: 0;
}

.event-meta {
  color: var(--brand-strong);
  font-weight: 750;
}

.closing-band {
  background: var(--brand-strong);
  color: var(--white);
}

.closing-content {
  max-width: 740px;
}

.closing-content h2 {
  color: var(--white);
}

.closing-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 82px 0 72px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--surface-muted) 85%, var(--terracotta)), var(--surface));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 800px;
}

.text-layout {
  max-width: 820px;
}

.lead {
  color: var(--brand-strong);
  font-size: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.values-grid article {
  padding-top: 18px;
  border-top: 3px solid var(--terracotta);
}

.values-grid h2 {
  font-size: 1.55rem;
}

.program-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.program-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.program-row span {
  color: var(--terracotta);
  font-weight: 850;
}

.program-row h2 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.program-row p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--brand-strong);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--brand-strong);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--terracotta) 28%, transparent);
  border-color: var(--terracotta);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand img {
  width: 154px;
  height: auto;
  border-radius: 0;
}

.footer-inner p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.footer-link {
  color: var(--brand-strong);
  font-weight: 800;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .brand img {
    width: 164px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .icon-button {
    margin-left: auto;
  }

  .hero {
    min-height: 70svh;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .intro-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-grid h2,
  .section-header h2,
  .split-layout h2,
  .closing-content h2,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .program-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
  }

  .event-row,
  .event-row.large {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 72px 0 66px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 37, 32, 0.9), rgba(8, 37, 32, 0.66)),
      linear-gradient(0deg, rgba(8, 37, 32, 0.2), rgba(8, 37, 32, 0.2));
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 58px 0;
  }

  .intro-band {
    padding: 42px 0;
  }

  .program-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 0;
  }
}

/* Kashaneh editorial identity */
:root { --bg:#f6f0e2; --surface:#fffdf8; --surface-muted:#e7dfd0; --ink:#24211c; --muted:#625c51; --line:#d4c9b6; --brand:#263b52; --brand-strong:#263b52; --terracotta:#9a562f; --blue:#263b52; --gold:#9a562f; --radius:6px; --shadow:none; }
body { font-family:"Source Serif 4", "Source Serif Pro", Georgia, serif; }
h1,h2,h3 { font-family:"EB Garamond", Georgia, serif; letter-spacing:0; }
.site-header { background:rgba(255,253,248,.96); backdrop-filter:none; }
.brand,.footer-brand { gap:10px; color:var(--blue); font-family:"EB Garamond", Georgia, serif; font-size:1.55rem; font-weight:700; }
.brand img { width:54px; height:54px; object-fit:cover; border:1px solid var(--line); border-radius:50%; }
.footer-brand img { width:46px; height:46px; object-fit:cover; border:1px solid var(--line); border-radius:50%; }
.site-nav { gap:18px; overflow-x:auto; scrollbar-width:none; white-space:nowrap; }
.site-nav::-webkit-scrollbar { display:none; }
.site-nav a { min-height:52px; font-size:.91rem; font-weight:500; }
.hero { min-height:690px; align-items:end; background:var(--blue); }
.hero-scrim { background:rgba(24,35,45,.64); }
.hero-content { max-width:720px; padding:120px 0 90px; }
.hero h1 { max-width:690px; font-size:4.2rem; }
.hero-copy { max-width:590px; font-size:1.2rem; }
.button { transition:none; }
.button:hover { transform:none; }
.button.primary { background:var(--terracotta); }
.button.secondary { background:transparent; }
.section { padding:78px 0; }
.intro-grid,.split-layout,.content-grid,.contact-grid { grid-template-columns:minmax(190px,.45fr) minmax(0,1fr); gap:52px; }
.lead { font-size:1.25rem; }
.values-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; background:var(--line); border:1px solid var(--line); }
.value-card { min-height:220px; padding:28px; background:var(--surface); }
.value-card .persian { color:var(--terracotta); font-family:Vazirmatn,Tahoma,sans-serif; font-size:1rem; }
.publication-grid,.gallery-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.editorial-card { border-top:2px solid var(--terracotta); padding:22px 0; }
.card-meta { color:var(--terracotta); font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.gallery-tile { min-height:220px; padding:26px; display:flex; flex-direction:column; justify-content:end; background:var(--blue); color:#fffdf8; }
.gallery-tile:nth-child(even) { background:#584733; }
.gallery-tile h3,.gallery-tile p { color:#fffdf8; }
.event-list { border-top:1px solid var(--line); }
.event-row { grid-template-columns:190px 1fr; gap:26px; padding:28px 0; }
.event-row time,.event-meta { color:var(--terracotta); font-size:.92rem; font-weight:700; }
.page-hero { padding:100px 0 76px; background:var(--surface); border-bottom:1px solid var(--line); }
.text-layout { max-width:760px; }
.feature-list,.charter-list { padding:0; margin:0; list-style:none; border-top:1px solid var(--line); }
.feature-list li,.charter-list li { padding:17px 0; border-bottom:1px solid var(--line); color:var(--muted); }
.category-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1px; background:var(--line); border:1px solid var(--line); }
.category-grid article { padding:25px; background:var(--surface); }
.closing-band { background:var(--blue); }
.site-footer { background:#1e2f42; }
.footer-inner { display:grid; grid-template-columns:1fr minmax(260px,2fr) auto; gap:28px; align-items:center; }
.rtl-page { font-family:Vazirmatn,Tahoma,sans-serif; }
.rtl-page h1,.rtl-page h2,.rtl-page h3,.rtl-page .brand,.rtl-page .footer-brand { font-family:Vazirmatn,Tahoma,sans-serif; }
.hero-kashaneh { min-height:760px; }
.hero-kashaneh .hero-scrim { background:rgba(12,25,43,.74); }
.hero-kashaneh .hero-image { object-position:center; }
.hero-kashaneh .hero-content { padding-bottom:122px; }
.hero-kashaneh h1 { max-width:760px; font-size:4.75rem; }
.hero-caption { position:absolute; right:max(20px, calc((100% - 1180px) / 2)); bottom:28px; margin:0; color:#f6f0e2; font-size:.82rem; letter-spacing:.08em; text-transform:uppercase; }
.feature-spread { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr); min-height:540px; background:#1e2f42; }
.feature-spread-image { min-height:420px; }
.feature-spread-image img { width:100%; height:100%; object-fit:cover; filter:saturate(.72) contrast(1.08); }
.feature-spread-copy { display:flex; flex-direction:column; justify-content:center; align-items:flex-start; padding:70px clamp(32px,6vw,100px); color:#f6f0e2; }
.feature-spread-copy h2 { max-width:460px; color:#fffdf8; font-size:3.35rem; }
.feature-spread-copy p { max-width:440px; margin-bottom:28px; color:#e7dfd0; font-size:1.1rem; }
.values-grid { border:0; gap:12px; background:transparent; }
.value-card { min-height:240px; border-top:3px solid var(--terracotta); box-shadow:0 12px 24px rgba(38,59,82,.08); }
.value-card:nth-child(2),.value-card:nth-child(5) { background:#263b52; border-top-color:#e0a272; }
.value-card:nth-child(2) h3,.value-card:nth-child(2) p,.value-card:nth-child(5) h3,.value-card:nth-child(5) p { color:#fffdf8; }

/* Institutional archive refactor */
.site-nav { min-width:0; flex:1 1 auto; }
.utility-nav { display:flex; align-items:center; gap:14px; flex:0 0 auto; margin-left:8px; font-family:ui-sans-serif,system-ui,sans-serif; font-size:.82rem; }
.utility-nav a { color:var(--brand-strong); }
.search-link { border-bottom:1px solid var(--terracotta); }
.institutional-hero { position:relative; min-height:720px; display:flex; align-items:end; overflow:hidden; background:#1e2f42; }
.institutional-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; }
.institutional-hero::after { content:""; position:absolute; inset:0; background:rgba(23,32,40,.38); }
.institutional-hero-copy { position:relative; z-index:1; max-width:760px; padding:120px 0 94px; color:#fffdf8; }
.institutional-hero-copy h1 { max-width:690px; margin:14px 0 0; color:#fffdf8; font-size:4.55rem; }
.institutional-name { margin:0; font-size:1.08rem; color:#f2e9d8; }
.feature-section { padding:88px 0 0; background:var(--bg); }
.editorial-heading { display:grid; grid-template-columns:1fr auto; column-gap:20px; align-items:end; }
.editorial-heading .section-kicker { grid-column:1 / -1; }
.editorial-heading .text-link { margin:0 0 8px; }
.editorial-card { display:flex; flex-direction:column; gap:11px; }
.editorial-card img { width:100%; aspect-ratio:1.35; object-fit:cover; border:1px solid var(--line); }
.editorial-card h2,.editorial-card h3 { margin:0; font-size:1.7rem; }
.editorial-card p { margin:0; color:var(--muted); }
.byline { color:var(--brand-strong)!important; font-size:.9rem; }
.topic-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px; }
.topic-tile { position:relative; min-height:250px; display:flex; flex-direction:column; justify-content:end; overflow:hidden; padding:20px; background:var(--blue); color:#fffdf8; }
.topic-tile::after { content:""; position:absolute; inset:0; background:rgba(18,30,43,.48); }
.topic-tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 220ms ease; }
.topic-tile:hover img { transform:scale(1.03); }
.topic-tile span,.topic-tile small { position:relative; z-index:1; }
.topic-tile span { font-family:"EB Garamond",Georgia,serif; font-size:1.7rem; line-height:1.05; }
.topic-tile small { margin-top:10px; color:#f2e9d8; font-size:.88rem; line-height:1.4; }
.topic-grid-large { grid-template-columns:repeat(3,minmax(0,1fr)); }
.topic-grid-large .topic-tile { min-height:320px; }
.archive-controls { display:flex; align-items:end; justify-content:space-between; gap:24px; padding-bottom:24px; border-bottom:1px solid var(--line); }
.filter-buttons { display:flex; flex-wrap:wrap; gap:8px; }
.filter-buttons button { min-height:36px; padding:7px 11px; border:1px solid var(--line); border-radius:0; background:var(--surface); color:var(--brand-strong); cursor:pointer; }
.filter-buttons button.active,.filter-buttons button:hover { border-color:var(--terracotta); background:var(--terracotta); color:#fffdf8; }
.archive-search,.search-page-input { display:grid; gap:7px; font-family:ui-sans-serif,system-ui,sans-serif; font-size:.8rem; color:var(--muted); }
.archive-search input,.search-page-input input { min-width:260px; border:1px solid var(--line); border-radius:0; background:var(--surface); color:var(--ink); padding:11px 12px; }
.search-page-input { max-width:680px; margin-top:28px; }
.search-page-input input { min-width:0; font-family:"EB Garamond",Georgia,serif; font-size:1.35rem; }
.archive-count { margin:18px 0 28px; color:var(--muted); font-family:ui-sans-serif,system-ui,sans-serif; font-size:.85rem; }
.publication-entry[hidden],.search-result[hidden] { display:none; }
.empty-state { max-width:720px; padding:50px 0; border-top:2px solid var(--terracotta); }
.empty-state h2 { font-size:3rem; }
.empty-state p { color:var(--muted); font-size:1.1rem; }
.people-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.person-card { padding:26px; border-top:3px solid var(--terracotta); background:var(--surface); }
.search-results { display:grid; border-top:1px solid var(--line); }
.search-result { display:block; padding:28px 0; border-bottom:1px solid var(--line); }
.search-result h2 { margin:0 0 8px; font-size:2rem; }
.search-result p:last-child { margin:0; color:var(--muted); }
.topic-hero { position:relative; min-height:470px; display:flex; align-items:end; overflow:hidden; background:var(--blue); }
.topic-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.topic-hero::after { content:""; position:absolute; inset:0; background:rgba(18,30,43,.5); }
.topic-hero .container { position:relative; z-index:1; padding-bottom:76px; color:#fffdf8; }
.topic-hero h1 { max-width:680px; margin:0 0 10px; color:#fffdf8; font-size:4rem; }
.topic-hero p:last-child { max-width:620px; margin:0; font-size:1.2rem; }
.footer-nav { display:flex; flex-wrap:wrap; gap:5px 14px; margin-top:12px; font-family:ui-sans-serif,system-ui,sans-serif; font-size:.82rem; }
.footer-nav a,.footer-contact small { color:#d7cdbb; }
.footer-contact { display:grid; gap:9px; justify-items:end; text-align:right; }
.footer-contact .footer-link { color:#fffdf8; }

@media (max-width: 1000px) { .topic-grid { grid-template-columns:repeat(3,minmax(0,1fr)); } .utility-nav { margin-left:auto; } }
@media (max-width: 760px) { .institutional-hero { min-height:610px; } .institutional-hero-copy { padding:92px 0 64px; } .institutional-hero-copy h1 { font-size:3.2rem; } .feature-section { padding-top:56px; } .feature-spread { grid-template-columns:1fr; } .feature-spread-copy { padding:46px 28px; } .feature-spread-copy h2 { font-size:2.8rem; } .topic-grid,.topic-grid-large,.publication-grid,.people-grid { grid-template-columns:1fr; } .topic-tile,.topic-grid-large .topic-tile { min-height:250px; } .archive-controls { align-items:stretch; flex-direction:column; } .archive-search input { width:100%; } .editorial-heading { grid-template-columns:1fr; } .editorial-heading .text-link { margin-top:8px; } .topic-hero h1 { font-size:3.1rem; } .footer-inner { grid-template-columns:1fr; } .footer-contact { justify-items:start; text-align:left; } }
.value-card:nth-child(2) .persian,.value-card:nth-child(5) .persian { color:#f0c8ad; }
.editorial-card { min-height:230px; padding:28px 24px 18px; background:var(--surface); border-top-width:4px; }
.editorial-card:nth-child(2) { background:#e7dfd0; }
.gallery-tile { min-height:280px; transition:transform 180ms ease; }
.gallery-tile:hover { transform:translateY(-5px); }
@media (max-width:900px) { .hero-kashaneh { min-height:680px; } .hero-kashaneh h1 { font-size:3.7rem; } .feature-spread { grid-template-columns:1fr; } .feature-spread-image { min-height:360px; } .feature-spread-copy { min-height:380px; } }
@media (max-width:640px) { .hero-kashaneh { min-height:640px; } .hero-kashaneh .hero-content { padding-bottom:90px; } .hero-kashaneh h1 { font-size:3rem; } .hero-caption { right:16px; bottom:18px; max-width:200px; text-align:right; } .feature-spread-image { min-height:300px; } .feature-spread-copy { min-height:0; padding:52px 24px; } .feature-spread-copy h2 { font-size:2.45rem; } .gallery-tile:hover { transform:none; } }

/* Clean, editorial Kashaneh interface */
:root { --bg:#ffffff; --surface:#ffffff; --surface-muted:#f4f7fb; --ink:#142033; --muted:#556276; --line:#d7dee8; --brand:#14365f; --brand-strong:#14365f; --terracotta:#b35a31; --blue:#14365f; --gold:#b35a31; }
html,body { background:#fff; }
body { color:var(--ink); }
.site-header { background:#fff; border-bottom:1px solid var(--line); }
.site-footer { background:#14365f; }
.home-hero { padding:72px 0 82px; background:#fff; }
.home-hero-grid { display:grid; grid-template-columns:minmax(0,.94fr) minmax(410px,1.06fr); gap:64px; align-items:center; }
.home-hero-copy h1 { color:#14365f; font-size:4.55rem; max-width:700px; }
.home-hero-copy .hero-copy { color:var(--muted); }
.home-hero-image { margin:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#f4f7fb; box-shadow:0 18px 40px rgba(20,54,95,.12); }
.home-hero-image img { width:100%; aspect-ratio:4 / 5; object-fit:cover; }
.home-hero-image figcaption { padding:12px 16px; color:var(--muted); font-size:.82rem; }
.button { border-radius:var(--radius); }
.button.primary { background:#14365f; }
.button.primary:hover { background:#0e2949; }
.button.outline { color:#14365f; border:1px solid #14365f; background:#fff; }
.button.outline:hover { background:#f4f7fb; }
.intro-band,.muted-section,.soft-section { background:#f4f7fb; }
.purpose-card { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#fff; }
.purpose-image img { width:100%; min-height:400px; height:100%; object-fit:cover; }
.purpose-copy { padding:56px; align-self:center; }
.purpose-copy h2 { font-size:3rem; }
.purpose-copy p { color:var(--muted); font-size:1.07rem; }
.values-grid { gap:18px; background:transparent; border:0; }
.value-card,.category-grid article { min-height:0; background:#fff; border:1px solid var(--line); border-top:3px solid #14365f; box-shadow:none; }
.value-card:nth-child(2),.value-card:nth-child(5) { background:#fff; border-top-color:#b35a31; }
.value-card:nth-child(2) h3,.value-card:nth-child(2) p,.value-card:nth-child(5) h3,.value-card:nth-child(5) p { color:inherit; }
.value-card:nth-child(2) .persian,.value-card:nth-child(5) .persian { color:var(--terracotta); }
.category-grid { gap:18px; background:transparent; border:0; }
.gallery-tile { min-height:250px; border:1px solid var(--line); background:#fff; color:#14365f; }
.gallery-tile:nth-child(even) { background:#f4f7fb; }
.gallery-tile h3 { color:#14365f; }
.gallery-tile p { color:var(--muted); }
.gallery-tile:hover { transform:none; border-color:#b35a31; }
.event-list { background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:0 24px; }
.event-row { border-bottom-color:var(--line); }
.publication-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.publication-card { overflow:hidden; background:#fff; border:1px solid var(--line); border-radius:var(--radius); }
.publication-card > a { display:block; background:#f4f7fb; }
.publication-card img { width:100%; aspect-ratio:16 / 10; object-fit:cover; transition:transform 180ms ease; }
.publication-card:hover img { transform:scale(1.025); }
.publication-card-content { padding:22px; }
.publication-card-content h3 { font-size:1.65rem; }
.publication-card-content p { color:var(--muted); }
.publication-article { padding:76px 0; background:#fff; }
.article-header { max-width:860px; }
.article-header h1 { font-size:4rem; }
.article-image-wrap { max-width:980px; margin-top:38px; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.article-image-wrap img { width:100%; aspect-ratio:16 / 8; object-fit:cover; }
.article-body { width:min(720px, calc(100% - 40px)); margin:48px auto 0; color:#344154; font-size:1.12rem; }
.article-body p { color:#344154; margin-bottom:1.35em; }
.article-video { margin-top:36px; }
.clean-page-hero { background:#fff; }
@media (max-width:900px) { .home-hero-grid,.purpose-card { grid-template-columns:1fr; gap:34px; } .home-hero-copy h1,.article-header h1 { font-size:3.35rem; } .home-hero-image { max-width:680px; } .home-hero-image img { aspect-ratio:16 / 10; } .purpose-copy { padding:38px; } .publication-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:640px) { .home-hero { padding:46px 0 58px; } .home-hero-grid { gap:28px; } .home-hero-copy h1,.article-header h1 { font-size:2.75rem; } .purpose-copy { padding:28px; } .purpose-copy h2 { font-size:2.35rem; } .publication-card-grid { grid-template-columns:1fr; } .publication-article { padding:52px 0; } .article-body { font-size:1.05rem; } }
@media (max-width:900px) { .values-grid,.publication-grid,.gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } .footer-inner { grid-template-columns:1fr; } .hero h1 { font-size:3.35rem; } }
@media (max-width:1400px) { .header-inner { min-height:auto; flex-wrap:wrap; gap:0 12px; padding:9px 0 0; } .brand,.footer-brand { font-size:1.3rem; } .brand img { width:50px; height:50px; } .site-nav { order:3; width:100%; min-width:0; justify-content:flex-start; gap:10px; padding-top:8px; border-top:1px solid var(--line); } .site-nav a { min-height:34px; font-size:.79rem; } .utility-nav { margin-left:auto; } }
@media (max-width:640px) { .site-header { position:static; } .header-inner { min-height:0; display:block; padding:10px 0 7px; } .brand { width:100%; } .brand span { display:none; } .brand img { width:46px; height:46px; } .site-nav { width:100%; margin:8px 0 0; display:flex; flex-wrap:wrap; gap:0 15px; overflow:visible; white-space:normal; } .site-nav a { min-height:32px; font-size:.8rem; } .hero { min-height:590px; } .hero-content { padding:76px 0 58px; } .hero h1 { font-size:2.75rem; } .section { padding:58px 0; } .intro-grid,.split-layout,.content-grid,.contact-grid,.event-row { grid-template-columns:1fr; gap:20px; } .values-grid,.publication-grid,.gallery-grid,.category-grid { grid-template-columns:1fr; } .page-hero { padding:70px 0 54px; } }
