﻿:root {
  --ink: #1f2f2b;
  --muted: #586861;
  --line: #dccfc8;
  --paper: #fbf4ee;
  --soft: #e8f2ee;
  --sage: #3f7368;
  --rose: #c46278;
  --plum: #7a245b;
  --plum-deep: #4c173d;
  --teal: #08766b;
  --lavender: #ead8f0;
  --warm: #fff0df;
  --gold: #d9953f;
  --cream: #fffdf9;
  --shadow: 0 22px 54px rgba(58, 38, 50, 0.15);
  --shadow-soft: 0 12px 30px rgba(35, 55, 49, 0.1);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(196, 98, 120, 0.07), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(20, 108, 99, 0.07), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, var(--paper) 44%, #f8f1eb 100%);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; color: var(--plum-deep); }
h1 { font-size: clamp(44px, 6vw, 76px); }
h2 { font-size: clamp(30px, 3.8vw, 48px); }
h3 { font-size: 20px; color: var(--ink); }
button, input, textarea { font: inherit; }

.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 76px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--rose), var(--teal)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid rgba(106, 41, 79, 0.14);
  box-shadow: 0 10px 30px rgba(44, 31, 39, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
}
.nav-wrap { width: min(1220px, calc(100% - 32px)); height: 78px; margin: 0 auto; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; height: auto; max-height: 58px; object-fit: contain; }
.site-header .brand { height: 100%; }
.site-header .brand img { width: auto; height: 100%; max-height: 78px; object-fit: contain; }
.footer-brand img { width: 210px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav-links a { position: relative; padding: 10px 12px; border-radius: var(--radius); color: #35443f; font-size: 14px; font-weight: 800; text-transform: uppercase; transition: background .18s ease, color .18s ease, box-shadow .18s ease; }
.nav-links a:hover, .nav-links a.active { background: linear-gradient(180deg, #f3e7ef, #efe7de); color: var(--plum-deep); box-shadow: inset 0 0 0 1px rgba(106, 41, 79, 0.12); }
.nav-cta { padding: 12px 18px; border-radius: var(--radius); background: linear-gradient(135deg, var(--plum), var(--rose)); color: white; font-size: 14px; font-weight: 800; box-shadow: 0 12px 24px rgba(106, 41, 79, 0.24); transition: transform .18s ease, box-shadow .18s ease; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(106, 41, 79, 0.3); }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid rgba(106, 41, 79, 0.18); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow-soft); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { padding: 76px 0 58px; overflow: hidden; background: #fbf8f4; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr); gap: 54px; align-items: center; }
.hero-copy p { max-width: 680px; margin-top: 22px; color: #6b746f; font-size: 18px; }
.hero-actions, .cta-actions, .profile-actions, .page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: var(--radius); font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #7a245b, #a63c72 48%, #08766b); color: white; box-shadow: 0 16px 30px rgba(122, 36, 91, 0.28); }
.btn-primary:hover { box-shadow: 0 20px 38px rgba(106, 41, 79, 0.32); }
.btn-soft { background: #e5f5ef; color: #174e48; border: 1px solid rgba(8, 118, 107, 0.26); box-shadow: 0 10px 24px rgba(8, 118, 107, 0.1); }
.btn-soft:hover { background: #e1f1ec; box-shadow: 0 14px 28px rgba(20, 108, 99, 0.13); }
.hero .btn { min-height: 46px; padding: 12px 18px; border-radius: 8px; transition: none; }
.hero .btn:hover { transform: none; }
.hero .btn-primary { background: #4d3144; color: white; box-shadow: 0 12px 22px rgba(77, 49, 68, 0.18); }
.hero .btn-primary:hover { box-shadow: 0 12px 22px rgba(77, 49, 68, 0.18); }
.hero .btn-soft { background: #edf4f2; color: #33443e; border: 1px solid #dce7e2; box-shadow: none; }
.hero .btn-soft:hover { background: #edf4f2; box-shadow: none; }
.hero h1, .hero h2 { color: #4d3144; }
.text-link { color: var(--plum); font-weight: 800; transition: color .18s ease; }
.text-link:hover { color: var(--teal); }
.text-link::after { content: ""; display: inline-block; width: 26px; height: 2px; margin-left: 8px; vertical-align: middle; border-radius: 99px; background: currentColor; }
.service-card .text-link, .team-card .text-link, .content-panel .text-link { margin-top: 18px; color: var(--plum-deep); }
.service-card .text-link { display: inline-flex; align-items: center; width: fit-content; margin-top: 20px; padding: 10px 15px; border-radius: 999px; background: rgba(234, 216, 240, 0.8); color: var(--plum-deep); font-weight: 800; }
.service-card .text-link:hover { background: var(--plum); color: #fff; }
.service-card .text-link::after { content: none; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-facts span { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border: 1px solid #ded8d4; border-radius: 999px; background: rgba(255,255,255,.66); color: #59635f; font-size: 12px; font-weight: 800; }
.tag-row span { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 11px; border: 1px solid rgba(8, 118, 107, 0.22); border-radius: 999px; background: linear-gradient(135deg, rgba(234,216,240,.82), rgba(225,246,239,.86)); color: #29514c; font-size: 12px; font-weight: 900; box-shadow: 0 5px 14px rgba(35, 55, 49, 0.06); }
.hero-media { position: relative; min-height: 470px; }
.hero-card { margin: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 18px 44px rgba(54, 45, 38, 0.12); background: #fffdf9; }
.hero-card-main { width: min(100%, 640px); margin-left: auto; }
.hero-card-small { position: absolute; left: 0; bottom: 4px; width: 44%; border: 8px solid #fbf8f4; }
.hero-visual { width: 100%; aspect-ratio: 16 / 10; max-height: 520px; object-fit: cover; }

.intro-band { padding: 56px 0; background: linear-gradient(135deg, #eaf5f1, #f6ebf1); border-block: 1px solid rgba(20, 108, 99, 0.14); }
main > section.section:nth-of-type(3n) { background: linear-gradient(180deg, rgba(255,253,249,.72), rgba(234,216,240,.5)); }
main > section.section:nth-of-type(3n + 1) { background: linear-gradient(180deg, rgba(225,246,239,.62), rgba(255,240,223,.52)); }
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 44px; align-items: end; }
.split h2 { font-size: clamp(30px, 3.2vw, 44px); }
.split p { font-size: 17px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-head h2 { max-width: 760px; overflow-wrap: break-word; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .text-link { flex: 0 0 auto; padding: 10px 0; }
.section-head h2, .content-panel h2, .service-row h2, .contact-panel h2 { letter-spacing: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card, .article-card, .announcement-card, .content-panel, .contact-card, .contact-panel, .video-card, .team-card, .gallery-card { border: 1px solid rgba(122, 36, 91, 0.14); border-radius: 16px; background: rgba(255, 253, 249, 0.97); box-shadow: var(--shadow-soft); }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 100%; overflow: hidden; background: rgba(255, 253, 249, 0.98); box-shadow: 0 14px 34px rgba(58, 38, 50, 0.10); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; z-index: 2; height: 4px; background: linear-gradient(90deg, #7a245b, #c46278 45%, #08766b); }
.service-card:hover, .article-card:hover, .announcement-card:hover, .gallery-card:hover { transform: translateY(-4px); border-color: rgba(122, 36, 91, 0.28); box-shadow: 0 22px 46px rgba(58, 38, 50, 0.16); }
.service-card > div { position: relative; display: flex; flex: 1; flex-direction: column; padding: 28px; }
.service-card > div::before, .service-card > div::after { display: none; }
.service-card h3 { color: var(--plum-deep); font-size: 22px; font-weight: 900; }
.service-card h3, .team-card h3, .video-card h3 { margin-bottom: 12px; }
.service-card .tag-row { margin-top: auto; padding-top: 18px; }
.service-media { width: calc(100% - 20px); margin: 10px 10px 0; border-radius: 12px; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .28s ease; }
.service-card:hover .service-media { transform: scale(1.025); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-row.large span { min-height: 34px; font-size: 13px; }

.team-preview-section, .why-section { background: linear-gradient(180deg, #fffdf9 0%, #f7efe8 100%); }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.team-grid-full { align-items: stretch; }
.team-card { display: grid; grid-template-columns: 250px minmax(0, 1fr); overflow: hidden; background: rgba(255, 253, 249, 0.98); box-shadow: 0 14px 34px rgba(58, 38, 50, 0.10); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(20, 108, 99, 0.22); box-shadow: 0 22px 46px rgba(58, 38, 50, 0.16); }
.team-photo { width: 100%; height: 100%; min-height: 330px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; background: #eee; transition: transform .28s ease; }
.team-card:hover .team-photo { transform: scale(1.025); }
.team-card-body { padding: 32px; display: flex; flex-direction: column; align-items: flex-start; }
.team-card-body .tag-row { margin-bottom: 18px; }
.team-card-body > span { color: var(--teal); font-weight: 900; font-size: 13px; text-transform: uppercase; }
.team-card-body h2, .team-card-body h3 { margin: 8px 0 12px; color: var(--plum-deep); font-weight: 800; }
.team-card-body .btn, .team-card-body .text-link { margin-top: auto; }

.video-section { background: linear-gradient(135deg, #e7f2ee, #f7ebef); }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.video-grid-full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.video-card { position: relative; overflow: hidden; background: rgba(255, 253, 249, 0.98); box-shadow: 0 14px 34px rgba(58, 38, 50, 0.10); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.video-card:hover { transform: translateY(-4px); border-color: rgba(8, 118, 107, 0.28); box-shadow: 0 22px 46px rgba(58, 38, 50, 0.16); }
.video-frame { position: relative; margin: 10px; border-radius: 12px; aspect-ratio: 16 / 9; background: #1f2523; overflow: hidden; }
.video-frame::after { content: ""; position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%); border-radius: 50%; background: rgba(255, 253, 249, 0.9); box-shadow: 0 14px 34px rgba(0,0,0,.22); pointer-events: none; transition: transform .24s ease, background .24s ease; }
.video-frame::before { content: ""; position: absolute; left: 50%; top: 50%; z-index: 1; transform: translate(-35%, -50%); border-left: 17px solid var(--plum); border-top: 11px solid transparent; border-bottom: 11px solid transparent; pointer-events: none; transition: border-left-color .24s ease; }
.video-card:hover .video-frame::after { transform: translate(-50%, -50%) scale(1.08); background: white; }
.video-card:hover .video-frame::before { border-left-color: var(--teal); }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-card > div:not(.video-frame) { padding: 24px 26px 28px; }

.why-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: 42px; align-items: start; }
.why-grid p { margin-top: 18px; }
.why-list { display: grid; gap: 12px; }
.why-list div { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; padding: 18px; border: 1px solid rgba(20, 108, 99, 0.14); border-radius: var(--radius); background: rgba(255, 253, 249, 0.9); color: #344540; font-weight: 800; box-shadow: var(--shadow-soft); }
.why-list span { width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--plum)); }
.announcement-grid, .article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.announcement-card, .article-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 30px; background: rgba(255, 253, 249, 0.98); box-shadow: 0 14px 34px rgba(58, 38, 50, 0.10); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.announcement-card::before, .article-card::before { content: ""; position: absolute; left: 0; top: 0; width: 6px; height: 100%; background: linear-gradient(180deg, var(--plum), var(--teal)); }
.article-cover { width: calc(100% + 60px); max-width: none; margin: -30px -30px 22px; aspect-ratio: 16 / 9; object-fit: cover; }
.announcement-card h2, .announcement-card h3, .article-card h2 { margin-bottom: 14px; font-size: 23px; line-height: 1.2; color: var(--plum-deep); font-family: Inter, Arial, sans-serif; font-weight: 800; }
.article-card p, .announcement-card p { margin-top: auto; }

.page-hero { padding: 76px 0 58px; background: linear-gradient(180deg, #fffdf9 0%, #eef3f0 100%); border-bottom: 1px solid #dce7e2; }
.page-hero-inner { max-width: 900px; text-align: center; }
.page-hero h1, .page-hero h2 { color: #4d3144; }
.page-hero .eyebrow { display: inline-block; gap: 0; margin-bottom: 14px; color: #667f76; }
.page-hero .eyebrow::before { content: none; }
.page-hero p { max-width: 760px; margin: 20px auto 0; font-size: 18px; }
.content-layout, .about-grid, .detail-layout, .contact-grid, .profile-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.content-main { display: grid; gap: 18px; }
.content-panel { padding: 30px; }
.content-panel h2 { margin-bottom: 12px; font-size: 32px; }
.content-visual { position: sticky; top: 100px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.content-image, .about-image, .detail-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-visuals { display: grid; gap: 16px; }
.about-image { border-radius: var(--radius); box-shadow: var(--shadow); filter: saturate(1.06) contrast(1.02); }
.about-image.wide { aspect-ratio: 16 / 10; }

.service-list { display: grid; gap: 20px; }
.service-row { position: relative; display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 28px; align-items: center; padding: 18px; border: 1px solid rgba(106, 41, 79, 0.13); border-radius: 14px; background: rgba(255,253,249,.96); box-shadow: 0 18px 42px rgba(58, 38, 50, 0.12); overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.service-row::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(180deg, var(--plum), var(--rose), var(--teal)); }
.service-row:hover { transform: translateY(-4px); border-color: rgba(20, 108, 99, 0.22); box-shadow: 0 26px 60px rgba(58, 38, 50, 0.16); }
.service-row-media { overflow: hidden; border-radius: 12px; box-shadow: 0 12px 28px rgba(35, 55, 49, 0.1); }
.service-row-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(1.08) contrast(1.03); transition: transform .28s ease, filter .28s ease; }
.service-row:hover .service-row-image { transform: scale(1.025); filter: saturate(1.14) contrast(1.05); }
.service-row h2 { font-size: 34px; margin-bottom: 12px; }
.service-detail-link { display: inline-flex; align-items: center; margin-top: 20px; padding: 10px 16px; border-radius: 999px; background: linear-gradient(135deg, var(--plum), var(--teal)); color: white; box-shadow: 0 12px 24px rgba(122, 36, 91, 0.18); }
.service-detail-link:hover { background: linear-gradient(135deg, #a63c72, var(--teal)); color: white; box-shadow: 0 16px 30px rgba(8, 118, 107, 0.18); }

.profile-hero { padding: 76px 0; background: linear-gradient(135deg, #fffdf9 0%, #f4e9f0 54%, #eaf4f0 100%); }
.profile-grid { display: grid; grid-template-columns: 390px minmax(0, 1fr); gap: 44px; align-items: center; }
.profile-photo-wrap { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #eee; }
.profile-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; }
.profile-copy p { margin-top: 18px; font-size: 17px; }
.clean-list { margin: 12px 0 0; padding-left: 20px; color: var(--muted); }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.filter-bar button { min-height: 40px; padding: 8px 14px; border: 1px solid rgba(20, 108, 99, 0.18); border-radius: var(--radius); background: var(--cream); color: var(--ink); font-weight: 800; cursor: pointer; box-shadow: var(--shadow-soft); }
.filter-bar button:hover, .filter-bar button.active { background: linear-gradient(135deg, var(--plum), var(--teal)); color: white; border-color: transparent; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-card { overflow: hidden; }
.gallery-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-card span { display: grid; gap: 6px; padding: 18px; color: var(--muted); }
.gallery-card strong { color: var(--ink); }
.detail-layout { grid-template-columns: minmax(0, 1fr) 360px; }
.detail-media { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.detail-image { aspect-ratio: 16 / 10; }

.contact-grid { grid-template-columns: .9fr 1.1fr; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: grid; gap: 5px; padding: 22px; transition: transform .18s ease, box-shadow .18s ease; }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(58, 38, 50, 0.14); }
.contact-card span { color: var(--teal); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.contact-card strong { font-size: 20px; }
.contact-panel { padding: 30px; }
.contact-panel h2 { margin: 20px 0 8px; font-size: 30px; }
.contact-panel h2:first-child { margin-top: 0; }

body[data-page="faq"] .content-layout { grid-template-columns: minmax(0, 1fr); max-width: 920px; }
body[data-page="faq"] .content-visual { display: none; }
body[data-page="faq"] .content-main { gap: 14px; }
body[data-page="faq"] .content-panel { position: relative; padding: 26px 66px 26px 28px; border-radius: 16px; background: linear-gradient(135deg, rgba(255,253,249,.98), rgba(234,216,240,.54), rgba(225,246,239,.72)); box-shadow: 0 18px 42px rgba(58, 38, 50, 0.13); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease; }
body[data-page="faq"] .content-panel::after { content: "+"; position: absolute; right: 24px; top: 24px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--lavender); color: var(--plum-deep); font-size: 24px; font-weight: 700; line-height: 1; transition: transform .24s ease, background .24s ease, color .24s ease; }
body[data-page="faq"] .content-panel:hover { transform: translateY(-3px); border-color: rgba(106, 41, 79, 0.2); background: linear-gradient(135deg, #fffdf9, #eef7f3); box-shadow: 0 22px 48px rgba(58, 38, 50, 0.14); }
body[data-page="faq"] .content-panel:hover::after { transform: rotate(45deg); background: var(--plum); color: white; }
body[data-page="faq"] .content-panel h2 { margin-bottom: 10px; font-family: Inter, Arial, sans-serif; color: var(--plum-deep); font-size: 22px; font-weight: 800; }
.accordion-item { border: 1px solid rgba(106, 41, 79, 0.13); border-radius: 14px; background: rgba(255,253,249,.96); box-shadow: var(--shadow-soft); overflow: hidden; transition: border-color .24s ease, box-shadow .24s ease, background .24s ease; }
.accordion-item.open { border-color: rgba(20, 108, 99, 0.24); background: linear-gradient(135deg, #fffdf9, #eef7f3); box-shadow: 0 20px 46px rgba(58, 38, 50, 0.13); }
.accordion-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 24px; border: 0; background: transparent; color: var(--plum-deep); font-weight: 800; text-align: left; cursor: pointer; transition: color .24s ease, background .24s ease; }
.accordion-trigger:hover { background: rgba(239, 229, 243, 0.36); color: var(--teal); }
.accordion-trigger::after { content: "+"; display: grid; flex: 0 0 auto; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--lavender); color: var(--plum-deep); font-size: 24px; line-height: 1; transition: transform .24s ease, background .24s ease, color .24s ease; }
.accordion-item.open .accordion-trigger::after { transform: rotate(45deg); background: var(--plum); color: white; }
.accordion-content { display: grid; grid-template-rows: 0fr; padding: 0 24px; transition: grid-template-rows .28s ease, padding .28s ease; }
.accordion-item.open .accordion-content { grid-template-rows: 1fr; padding: 0 24px 22px; }
.accordion-content > * { min-height: 0; overflow: hidden; }

.footer-cta { position: relative; padding: 64px 0; background: linear-gradient(135deg, #4c173d 0%, #8b2f68 42%, #08766b 100%); color: white; box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 -18px 48px rgba(58,38,50,.12); overflow: hidden; }
.footer-cta::after { content: ""; position: absolute; right: -90px; top: -130px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.12); }
.footer-cta h2 { color: white; max-width: 720px; }
.footer-cta .eyebrow { color: #ffdbe2; }
.footer-cta .eyebrow::before { background: rgba(255,255,255,.74); }
.footer-cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.footer-cta .btn-primary { background: white; color: var(--plum-deep); box-shadow: 0 16px 34px rgba(0,0,0,.2); }
.footer-cta .btn-soft { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.38); color: white; box-shadow: none; }
.footer { padding: 60px 0 26px; background: linear-gradient(180deg, #223530 0%, #172521 100%); color: white; }
.footer p, .footer a { color: rgba(255,255,255,.76); }
.footer a { transition: color .22s ease, transform .22s ease; }
.footer a:hover { color: white; transform: translateX(3px); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr; gap: 48px; }
.footer h3 { margin-bottom: 16px; color: white; font-size: 15px; letter-spacing: 0; text-transform: uppercase; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.copyright { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: 13px; }
.quick-contact { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: grid; gap: 10px; }
.quick-contact a { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 14px 28px rgba(0,0,0,.22); transition: transform .18s ease, box-shadow .18s ease; }
.quick-contact a:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0,0,0,.26); }
.quick-whatsapp { order: 1; }
.quick-phone { order: 2; }
.quick-phone { background: linear-gradient(135deg, #1f5fbf, #2f7eea); }
.quick-whatsapp { background: linear-gradient(135deg, #1f9f61, #32c879); }
.quick-contact svg { width: 23px; height: 23px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.quick-whatsapp svg { fill: white; stroke: none; width: 27px; height: 27px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1040px) {
  .nav-wrap { height: 70px; }
  .brand img { width: 158px; }
  .site-header .brand img { width: auto; height: 100%; max-height: 70px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 16px; right: 16px; top: 70px; display: none; flex-direction: column; align-items: stretch; max-height: calc(100vh - 86px); overflow-y: auto; padding: 12px; border: 1px solid rgba(106, 41, 79, 0.14); border-radius: var(--radius); background: rgba(255, 253, 249, 0.98); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-cta { display: none; }
  .hero-grid, .split, .why-grid, .content-layout, .about-grid, .detail-layout, .contact-grid, .profile-grid, .profile-detail-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 360px; }
  .hero-card-main { margin-left: 0; }
  .service-grid, .gallery-grid, .announcement-grid, .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-visual { position: static; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1160px); }
  .section { padding: 58px 0; }
  .hero { padding: 52px 0 44px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .section-head, .footer-cta-inner { align-items: flex-start; flex-direction: column; }
  .hero-media { min-height: auto; display: grid; gap: 12px; }
  .hero-card-small { position: static; width: 100%; border: 0; }
  .service-grid, .team-grid, .video-grid, .video-grid-full, .gallery-grid, .announcement-grid, .article-grid { grid-template-columns: 1fr; }
  .team-card, .service-row { grid-template-columns: 1fr; }
  .team-photo { min-height: 0; height: auto; max-height: 380px; object-fit: contain; background: #f1ebe6; }
  .service-row { padding: 14px; }
  .profile-grid { gap: 24px; }
  .profile-photo-wrap { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-contact { right: 12px; bottom: 78px; }
}

@media (max-width: 420px) {
  .brand img { width: 138px; }
  .site-header .brand img { width: auto; height: 100%; max-height: 70px; }
  .nav-wrap { width: calc(100% - 22px); }
  .btn { width: 100%; }
  .hero-actions, .cta-actions, .profile-actions, .page-actions { width: 100%; }
  .contact-card strong { font-size: 18px; }
}
.admin-body { background: var(--paper); }
.admin-shell { width: min(1100px, calc(100% - 32px)); margin: 0 auto; padding: 44px 0; }
.admin-hero { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.admin-hero h1 { font-size: 44px; }
.admin-hero p { max-width: 720px; }
.admin-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 22px 0; }
.admin-card, .admin-panel { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.admin-card strong { display: block; font-size: 34px; color: var(--plum); }
.admin-card span, .admin-panel dt { color: var(--sage); font-weight: 800; }
.admin-panel h2 { margin-bottom: 16px; font-size: 32px; }
.admin-panel dl { display: grid; gap: 12px; margin: 0; }
.admin-panel dd { margin: 4px 0 0; color: var(--muted); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.admin-notice { margin: 16px 0; padding: 14px 16px; border-radius: var(--radius); font-weight: 800; }
.admin-notice.success { background: #e6f5ef; color: #155f4f; border: 1px solid #bfe3d6; }
.admin-notice.error { background: #fdebea; color: #9f2f2f; border: 1px solid #f3c4c0; }
.admin-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: 100%; max-width: 900px; margin-top: 18px; padding: 18px; border: 1px solid rgba(122, 36, 91, 0.12); border-radius: var(--radius); background: rgba(255,253,249,.72); }
.admin-form.admin-inline { margin-bottom: 16px; }
.admin-form h3, .admin-wide, .admin-form-actions { grid-column: 1 / -1; }
.admin-form h3 { margin-bottom: 4px; color: var(--plum-deep); }
.admin-form label { display: grid; gap: 7px; color: var(--ink); font-size: 13px; font-weight: 800; }
.admin-form input, .admin-form textarea, .admin-form select { width: 100%; min-height: 42px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--ink); }
.admin-form textarea { min-height: 92px; resize: vertical; }
.admin-form input[type="file"] { min-height: auto; padding: 12px; }
.admin-form-actions { display: flex; justify-content: flex-end; }
.admin-form .btn { align-self: end; }
.admin-preview { width: min(220px, 100%); aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); }
.admin-list { display: grid; gap: 10px; margin-top: 18px; }
.admin-list form { display: flex; justify-content: space-between; gap: 12px; align-items: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.76); }
.admin-content-list { display: grid; gap: 14px; margin-top: 18px; }
.admin-item-card { display: grid; grid-template-columns: 132px minmax(0, 1fr) auto; gap: 16px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.76); }
.admin-thumb { width: 132px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.admin-card-main { min-width: 0; }
.admin-card-main h3 { margin: 0 0 6px; color: var(--plum-deep); font-size: 20px; }
.admin-card-main p { display: -webkit-box; margin: 0; color: var(--muted); overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.admin-card-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; align-items: center; }
.admin-card-actions form { margin: 0; }
.admin-editor { width: 100%; }
.admin-card-actions .admin-editor { width: auto; }
.admin-editor summary { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 800; user-select: none; }
.admin-editor[open] summary { margin-bottom: 12px; }
.admin-add { margin-top: 10px; }
.admin-add > summary { border-color: transparent; background: var(--plum); color: #fff; }
.admin-card-actions .admin-form { width: min(900px, calc(100vw - 64px)); }
@media (max-width: 760px) { .admin-hero { flex-direction: column; align-items: flex-start; } .admin-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .admin-form { grid-template-columns: 1fr; } .admin-list form { align-items: flex-start; flex-direction: column; } .admin-item-card { grid-template-columns: 1fr; } .admin-thumb { width: 100%; max-height: 220px; } .admin-card-actions { justify-content: flex-start; } .admin-card-actions .admin-form { width: 100%; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.article-tools { display: grid; grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); gap: 18px 28px; align-items: start; margin-bottom: 12px; }
.article-search { position: relative; display: block; }
.article-search svg { position: absolute; left: 16px; top: 50%; width: 20px; height: 20px; transform: translateY(-50%); fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; pointer-events: none; }
.article-search input { width: 100%; min-height: 48px; padding: 11px 16px 11px 48px; border: 1px solid rgba(20, 108, 99, 0.22); border-radius: var(--radius); outline: none; background: var(--cream); color: var(--ink); box-shadow: var(--shadow-soft); transition: border-color .18s ease, box-shadow .18s ease; }
.article-search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8, 118, 107, .12), var(--shadow-soft); }
.article-filter-bar { margin: 0; }
.article-result-count { margin: 0 0 24px; font-size: 14px; font-weight: 700; }
.article-card[hidden] { display: none; }
.article-read-more { display: inline-flex; align-items: center; width: fit-content; margin-top: 22px; }
.article-empty { padding: 48px 24px; border: 1px dashed rgba(122, 36, 91, .3); border-radius: 16px; text-align: center; background: rgba(255,253,249,.72); }
.article-empty h2 { margin-bottom: 10px; font-size: 30px; }
.article-detail-hero { padding: 64px 0 52px; background: linear-gradient(180deg, #fffdf9 0%, #eef3f0 100%); border-bottom: 1px solid #dce7e2; }
.article-detail-heading { max-width: 900px; }
.article-detail-heading h1 { max-width: 860px; font-size: clamp(42px, 6vw, 68px); }
.article-back-link { display: block; width: fit-content; margin-bottom: 28px; color: var(--teal); font-weight: 800; }
.article-back-link:hover { color: var(--plum); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 24px; color: var(--muted); font-size: 14px; font-weight: 700; }
.article-meta span + time::before { content: "•"; margin-right: 24px; color: var(--rose); }
.article-detail-shell { max-width: 900px; padding-top: 56px; padding-bottom: 76px; }
.article-detail-cover { width: 100%; max-height: 520px; margin-bottom: 40px; border-radius: 16px; object-fit: cover; box-shadow: var(--shadow); }
.article-detail-content { padding: clamp(26px, 5vw, 54px); border: 1px solid rgba(122, 36, 91, .14); border-radius: 16px; background: rgba(255,253,249,.98); color: #35443f; font-size: 18px; line-height: 1.9; box-shadow: var(--shadow-soft); }
@media (max-width: 760px) {
  .article-tools { grid-template-columns: 1fr; }
  .article-detail-hero { padding: 46px 0 38px; }
  .article-detail-shell { padding-top: 34px; padding-bottom: 54px; }
  .article-detail-content { font-size: 16px; line-height: 1.8; }
}

.reading-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 4px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--rose), var(--plum), var(--teal)); transition: width .08s linear; }
.article-detail-content p { margin: 0; color: #35443f; }
.article-detail-content p + p { margin-top: 1.45em; }
.article-pagination { margin-top: 30px; padding: 24px; border: 1px solid rgba(8, 118, 107, .16); border-radius: 16px; background: rgba(255, 253, 249, .92); box-shadow: var(--shadow-soft); }
.article-pagination-main { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; }
.article-pagination-main > :last-child { justify-self: end; }
.article-page-direction { display: inline-flex; width: fit-content; padding: 10px 14px; border-radius: 10px; background: #e5f5ef; color: #174e48; font-weight: 800; }
.article-page-direction:hover { background: var(--teal); color: #fff; }
.article-page-status { color: var(--muted); font-size: 14px; font-weight: 800; }
.article-page-numbers { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 20px; }
.article-page-numbers a, .article-page-numbers span { display: grid; place-items: center; min-width: 38px; height: 38px; padding: 0 8px; border: 1px solid rgba(122, 36, 91, .16); border-radius: 9px; background: #fff; color: var(--plum-deep); font-weight: 800; }
.article-page-numbers a:hover, .article-page-numbers .active { border-color: transparent; background: linear-gradient(135deg, var(--plum), var(--teal)); color: #fff; }
@media (max-width: 620px) { .article-pagination-main { grid-template-columns: 1fr 1fr; } .article-page-status { grid-column: 1 / -1; grid-row: 1; text-align: center; } .article-page-direction { font-size: 13px; } }
