/* =========================================================
   Csillagkuckó — Gyermekfejlesztő műhely
   Calm · warm · trustworthy · photo-forward · star identity
   ========================================================= */

:root {
  /* Warm gold = brand signature (used sparingly), sage = calm base */
  --gold:       #E7A23B;
  --gold-deep:  #CC8420;
  --gold-soft:  #FBEAC9;
  --sage:       #7FA493;   /* calming green */
  --sage-deep:  #557A6A;
  --sage-soft:  #E4EFE8;
  --coral:      #EC8A66;   /* gentle warm accent */

  --ink:        #2E2922;   /* warm charcoal text */
  --ink-soft:   #524A40;   /* secondary text (darkened for readability) */
  --cream:      #FCF8F1;   /* page background     */
  --cream-2:    #F5EEE1;   /* section tint        */
  --card:       #FFFFFF;
  --line:       #ECE2D1;

  --radius:     20px;
  --radius-sm:  12px;
  --shadow:     0 22px 48px -24px rgba(120,90,40,.30);
  --shadow-sm:  0 10px 26px -16px rgba(120,90,40,.26);
  --maxw:       1160px;

  --font-head:  'Quicksand', system-ui, sans-serif;
  --font-body:  'Nunito', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.18; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.2px; }
h1 { font-size: clamp(1.85rem, 3.8vw, 2.7rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3.3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.16rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
a  { color: var(--gold-deep); text-decoration: none; }
img { max-width: 100%; display: block; }

/* SVG line icons */
.ic { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round; vertical-align: -.18em; flex: none; }
.ic-lg { width: 2rem; height: 2rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px;
  font-size: .74rem; font-weight: 700; color: var(--sage-deep); margin-bottom: .6rem;
}
.eyebrow .ic { color: var(--gold); }
.center { text-align: center; }
.center.eyebrow { display: flex; justify-content: center; }
.section-lead { color: var(--ink-soft); max-width: 58ch; font-size: 1.04rem; }
.center.section-lead { margin-inline: auto; }
.hl { color: var(--gold-deep); position: relative; }
.hl::after { content:""; position:absolute; left:-1%; right:-1%; bottom:.06em; height:.32em;
  background: var(--gold); opacity:.22; border-radius:1em; z-index:-1; }

.section { padding: clamp(3.4rem, 7vw, 5.8rem) 0; position: relative; }

/* ===== Page routing (each menu item = its own page) ===== */
.page { display: none; }
.page.active { display: block; animation: pageIn .4s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.nav-menu a.active { background: var(--sage-soft); color: var(--sage-deep); }
.nav-menu a.nav-cta.active { background: var(--gold-deep); color: #fff; }
.footer-nav a.active { color: var(--gold); opacity: 1; }

.editable-note { font-size: .88rem; color: var(--ink-soft); background: var(--sage-soft);
  border-left: 3px solid var(--sage); padding: .55rem .85rem; border-radius: 8px; display: inline-block; }
.center-note { display: block; text-align: center; margin-top: 1.5rem; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 50;
  background: rgba(252,248,241,.85); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .65rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-star { font-size: 1.6rem; filter: drop-shadow(0 2px 4px rgba(231,162,59,.35)); animation: twinkle 5s ease-in-out infinite; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--ink); }
.brand-sub  { font-size: .68rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--sage-deep); }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; gap: .15rem; margin: 0; padding: 0; align-items: center; }
.nav-menu a { display: inline-block; padding: .5rem .8rem; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: .92rem; transition: background .2s, color .2s; }
.nav-menu a:hover { background: var(--sage-soft); color: var(--sage-deep); }
.nav-cta { background: var(--gold); color: #fff !important; }
.nav-cta:hover { background: var(--gold-deep) !important; color: #fff !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 0; background: var(--cream-2); border-radius: 12px; cursor: pointer; padding: 11px 10px; }
.nav-toggle span { height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: .82rem 1.5rem; border-radius: 999px; cursor: pointer; border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 12px 24px -12px rgba(204,132,32,.8); }
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 18px 30px -12px rgba(204,132,32,.85); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-deep); }
.btn-fb { background: var(--sage-deep); color: #fff; }
.btn-fb:hover { background: var(--sage); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(3rem, 6vw, 4.6rem);
  background:
    radial-gradient(90% 70% at 85% -10%, var(--gold-soft) 0%, transparent 55%),
    radial-gradient(80% 70% at -10% 110%, var(--sage-soft) 0%, transparent 55%),
    var(--cream); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-text .lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.6rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; }
.hero-badges li { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--line); padding: .4rem .85rem; border-radius: 999px; font-weight: 700; font-size: .84rem; box-shadow: var(--shadow-sm); }
.hero-badges .ic { color: var(--gold); }

.hero-media { position: relative; }
.hero-photo { position: relative; aspect-ratio: 4/3.4; border-radius: 26px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), var(--sage-soft));
  box-shadow: var(--shadow); display: grid; place-items: center; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Hero slideshow */
.hero-slides { position: relative; aspect-ratio: 4/3.4; border-radius: 26px; overflow: hidden;
  background: linear-gradient(135deg, var(--gold-soft), var(--sage-soft)); box-shadow: var(--shadow); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; will-change: opacity, transform; }
.hero-slide.active { opacity: 1; animation: kenburns 6.5s ease-out both; z-index: 1; }
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.09); } }
.hero-slides::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(58,51,44,.28) 0%, transparent 28%); }
.hero-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 3; }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.55); box-shadow: 0 1px 3px rgba(0,0,0,.3); transition: .25s; }
.hero-dot:hover { background: rgba(255,255,255,.85); }
.hero-dot.on { background: #fff; width: 22px; }
.photo-fallback { display: none; align-items: center; gap: .4rem; font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); }
.photo-fallback .ic { color: var(--gold); }
.hero-photo.is-empty .photo-fallback, .photo-frame.is-empty .photo-fallback { display: inline-flex; }
.hero-chip { position: absolute; display: inline-flex; align-items: center; gap: .4rem; background: #fff; padding: .5rem .85rem; border-radius: 999px; font-weight: 700; font-size: .82rem; box-shadow: var(--shadow); }
.hero-chip .ic { color: var(--coral); }
.chip-1 { top: 14%; left: -18px; animation: bob 6s ease-in-out infinite; }
.chip-2 { bottom: 12%; right: -14px; animation: bob 6s ease-in-out infinite .8s; }

/* ===== Trust strip ===== */
.trust-strip { background: var(--sage-deep); color: #fff; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; padding: .9rem 0; }
.trust-inner span { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .94rem; }
.trust-inner .ic { color: var(--gold-soft); }

/* ===== About ===== */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 3rem; align-items: center; }
.photo-frame { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--sage-soft), var(--gold-soft)); box-shadow: var(--shadow);
  display: grid; place-items: center; rotate: -1.5deg; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about-points { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .55rem; }
.about-points li { display: flex; align-items: center; gap: .55rem; font-weight: 600; }
.about-points .ic { color: var(--gold); }
.about-quote { font-family: var(--font-head); font-style: italic; color: var(--sage-deep); border-left: 3px solid var(--gold); padding: .4rem 0 .4rem 1rem; margin-top: 1.2rem; }

/* ===== Services ===== */
.services { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 1.3rem; margin-top: 2.4rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-ico { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--sage-soft); color: var(--sage-deep); margin-bottom: .8rem; }
.card-ico .ic { width: 1.6rem; height: 1.6rem; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card-price { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.08rem; margin: .5rem 0 0; }
.card-price span { display: block; font-family: var(--font-body); font-weight: 700; font-size: .8rem; color: var(--sage-deep); }
.card.highlight { border-color: var(--gold); background: linear-gradient(180deg, #fff, #fffaf0); }
.card.highlight .card-ico { background: var(--gold-soft); color: var(--gold-deep); }
.card.family { background: linear-gradient(180deg, #fff, #fdf3ee); border-color: #f3d6c8; }
.card.family .card-ico { background: #fbe2d8; color: var(--coral); }
.services-foot { display: flex; align-items: center; justify-content: center; gap: .5rem; text-align: center; margin-top: 2.4rem; color: var(--ink-soft); max-width: 66ch; margin-inline: auto; }
.services-foot .ic { color: var(--gold); flex: none; }

/* ===== Fejlesztési területek ===== */
.areas { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1.3rem; margin-top: 2.4rem; }
.area-card p { color: var(--ink-soft); font-size: .95rem; }
.area-list { list-style: none; padding: 0; margin: .8rem 0 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.area-list li { font-size: .82rem; font-weight: 700; color: var(--sage-deep); background: var(--sage-soft); border-radius: 999px; padding: .28rem .7rem; }
.area-card.highlight .area-list li { background: var(--gold-soft); color: var(--gold-deep); }
.area-card.family .area-list li { background: #fbe2d8; color: var(--coral); }

/* ===== Schedule ===== */
.schedule { background: var(--cream-2); }
.schedule-wrap { overflow-x: auto; margin-top: 2.2rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.schedule-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 680px; font-size: .9rem; }
.schedule-table th { background: var(--sage-deep); color: #fff; font-family: var(--font-head); font-weight: 700; padding: .8rem .6rem; text-align: center; }
.schedule-table th:first-child { border-top-left-radius: var(--radius); }
.schedule-table th:last-child { border-top-right-radius: var(--radius); }
.schedule-table td { padding: .55rem .5rem; text-align: center; border: 3px solid var(--cream-2); vertical-align: middle; }
.schedule-table td.t { font-weight: 800; color: var(--sage-deep); background: var(--sage-soft); white-space: nowrap; }
.ev { border-radius: 10px; font-weight: 700; color: var(--ink); }
.ev-school  { background: #fbe7c4; }
.ev-prep    { background: #e9eecb; }
.ev-toddler { background: #fbe0d6; }
.ev-ind     { background: #d9eadf; }
.ev-autism  { background: #d8e7f1; }
.ev-group   { background: #e8e0f1; }
.ev-parent  { background: #f3ecd6; font-style: italic; font-weight: 600; }
.ev-empty   { background: transparent; }

/* ===== Prices ===== */
.prices { background: var(--cream); }
.prices-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: start; }
.discount-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.disc { display: inline-flex; align-items: center; gap: .4rem; background: #fff; border: 1px solid var(--line); color: var(--ink); font-weight: 700; font-size: .84rem; padding: .45rem .85rem; border-radius: 999px; }
.disc .ic { color: var(--gold); }
.price-table { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.pt-row { display: grid; grid-template-columns: 1.7fr .9fr .9fr; gap: .5rem; padding: .82rem 1.2rem; align-items: center; border-bottom: 1px solid var(--line); font-size: .94rem; }
.pt-row span:nth-child(2), .pt-row span:nth-child(3) { text-align: right; font-weight: 800; color: var(--ink); }
.pt-row:last-child { border-bottom: 0; }
.pt-row:nth-child(even):not(.pt-head) { background: var(--cream); }
.pt-head { background: var(--sage-deep); color: #fff; font-family: var(--font-head); font-weight: 700; }
.pt-head span { color: #fff !important; }
.pt-head span:first-child { text-align: left; }
.pt-family { background: #fdf3ee !important; font-weight: 800; }

/* ===== Philosophy ===== */
.philosophy { text-align: center; background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.quote-star { font-size: 2.4rem; display: inline-block; animation: twinkle 5s ease-in-out infinite; }
.philosophy blockquote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.35rem, 3vw, 2rem); color: var(--ink); max-width: 24ch; margin: 1rem auto 2.6rem; line-height: 1.35; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.2rem; box-shadow: var(--shadow-sm); transition: transform .2s; }
.pillar:hover { transform: translateY(-4px); }
.pillar .ic-lg { color: var(--sage-deep); margin-bottom: .5rem; }
.pillar p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* ===== Gallery ===== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.g-item { position: relative; margin: 0; aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(135deg, var(--sage-soft), var(--gold-soft)); box-shadow: var(--shadow-sm); display: grid; place-items: center; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-fallback { display: none; color: var(--gold); }
.g-fallback .ic { width: 2rem; height: 2rem; }
.g-item.is-empty .g-fallback { display: block; }
.g-item.is-empty img { display: none; }

/* ===== Downloads ===== */
.downloads { background: var(--cream-2); }
.download-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.3rem; margin-top: 2.2rem; }
.dl-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; color: var(--ink); display: block; }
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dl-card .ic-lg { color: var(--gold); margin-bottom: .5rem; }
.dl-card p { color: var(--ink-soft); font-size: .93rem; }
.dl-tag { display: inline-block; margin-top: .4rem; font-size: .78rem; font-weight: 800; color: var(--sage-deep); background: var(--sage-soft); padding: .3rem .7rem; border-radius: 999px; }

/* ===== News ===== */
.news { background: var(--cream); }
.news-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.social-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0 1rem; }
.news-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.news-list li { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 1rem 1.2rem; box-shadow: var(--shadow-sm); }
.news-list strong { display: block; font-family: var(--font-head); font-size: 1.05rem; margin: .15rem 0 .2rem; }
.news-date { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--sage-deep); }

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.contact-list li { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.contact-list .ic { color: var(--sage-deep); }
.contact-list em { color: var(--ink-soft); font-weight: 500; font-size: .84rem; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 700; font-size: .87rem; margin-bottom: .35rem; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--cream); transition: border .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(127,164,147,.2); background: #fff; }
.field textarea { resize: vertical; }
.form-hint { font-size: .8rem; color: var(--ink-soft); margin: .8rem 0 0; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #f6efe2; padding: 2.5rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand strong { font-family: var(--font-head); font-size: 1.12rem; display: block; }
.footer-brand span { font-size: .8rem; opacity: .8; }
.footer-nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.footer-nav a { color: #f6efe2; opacity: .85; font-weight: 600; font-size: .92rem; }
.footer-nav a:hover { opacity: 1; color: var(--gold); }
.footer-copy { width: 100%; text-align: center; font-size: .84rem; opacity: .7; margin: .5rem 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); }

/* ===== Animations ===== */
@keyframes twinkle { 0%,100% { transform: scale(1) rotate(0); opacity: 1; } 50% { transform: scale(1.1) rotate(6deg); opacity: .85; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { *, *::before { animation: none !important; scroll-behavior: auto; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .prices-inner, .news-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .about-photo { max-width: 340px; margin-inline: auto; }
  .chip-1 { left: 4px; } .chip-2 { right: 4px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: absolute; top: calc(100% + 8px); right: 1.2rem; left: 1.2rem;
    flex-direction: column; align-items: stretch; gap: .15rem; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .55rem;
    box-shadow: var(--shadow); transform-origin: top; transform: scaleY(0); opacity: 0; pointer-events: none; transition: .2s; }
  .nav-menu.open { transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-menu a { padding: .7rem .9rem; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-row { grid-template-columns: 1.5fr 1fr; font-size: .88rem; }
  .pt-row span:nth-child(3), .pt-head span:nth-child(3) { display: none; }
}
