/* İrlandalı Anne — modern refresh
   Brand colors:
     Plum  #5f4776
     Coral #e86852
     Gold  #face83
     Cream #fdf7ee
*/

:root {
  --plum: #5f4776;
  --plum-deep: #3f2e51;
  --plum-soft: #8b73a3;
  --coral: #e86852;
  --coral-deep: #c84e3a;
  --gold: #face83;
  --gold-soft: #fde2b8;
  --cream: #fdf7ee;
  --paper: #fbf6ee;
  --ink: #2b1f3a;
  --ink-soft: #574766;
  --line: rgba(95, 71, 118, 0.14);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(43, 31, 58, 0.04), 0 8px 30px rgba(43, 31, 58, 0.08);
  --shadow-deep: 0 20px 60px rgba(63, 46, 81, 0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.4em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; text-wrap: pretty; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--coral);
}

/* ==== Top bar / nav ==== */
.topbar {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--gold); }
.topbar .topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar-left { font-style: italic; opacity: 0.9; }

.site-header {
  position: sticky;
  top: 0;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--plum-deep);
  letter-spacing: 0.02em;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--coral);
  transition: right 0.3s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav a:hover { color: var(--plum-deep); }
.nav a.active { color: var(--plum-deep); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: white !important;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--coral-deep); color: white !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--plum-deep);
}

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--coral); color: white; }
.btn-primary:hover { background: var(--coral-deep); color: white; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--plum-deep); border-color: var(--plum-soft); }
.btn-secondary:hover { background: var(--plum-deep); color: white; border-color: var(--plum-deep); }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { background: white; color: var(--plum-deep); border-color: white; }

/* ==== Hero (editorial split) ==== */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 86vh;
}
.hero-media {
  position: relative;
  background: var(--plum);
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(63,46,81,0.0) 0%, rgba(63,46,81,0.4) 100%);
}
.hero-media .media-tag {
  position: absolute;
  top: 28px; left: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--plum-deep);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  z-index: 2;
}
.hero-media .media-tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(250,206,131,0.2), transparent 60%),
    var(--paper);
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  margin-bottom: 0.3em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.hero-copy .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0.6em 0 2em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .meta-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--plum-deep);
  font-weight: 500;
}
.hero-meta .meta-stat span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta .badge-stack {
  display: flex; align-items: center; gap: 14px; margin-left: auto;
}
.hero-meta .badge-stack img { height: 64px; width: auto; }

/* ==== Sections ==== */
section.block { padding: 110px 0; }
section.block.tight { padding: 70px 0; }
section.cream { background: var(--cream); }
section.plum { background: var(--plum-deep); color: rgba(255,255,255,0.92); }
section.plum h1, section.plum h2, section.plum h3 { color: white; }
section.plum a { color: var(--gold); }
section.coral { background: var(--coral); color: white; }
section.coral h1, section.coral h2, section.coral h3 { color: white; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .head-side { max-width: 38ch; color: var(--ink-soft); }
.section-head h2 { margin-bottom: 0; }

/* ==== Pillars / value props ==== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pillar-num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 16px;
}
.pillar h3 { margin-bottom: 12px; font-size: 1.4rem; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ==== Packages ==== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg {
  background: white;
  border-radius: var(--r-md);
  padding: 40px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pkg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--plum));
}
.pkg.kostebek { --accent: #b89860; }
.pkg.kelebek  { --accent: var(--coral); }
.pkg.koala    { --accent: var(--plum); }
.pkg-name {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--plum-deep);
  margin-bottom: 6px;
}
.pkg-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, var(--plum));
  margin-bottom: 20px;
}
.pkg-desc { color: var(--ink-soft); margin-bottom: 22px; font-size: 0.96rem; }
.pkg ul { list-style: none; padding: 0; margin: 0 0 28px; }
.pkg li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 10px 0 10px 24px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.pkg li:last-child { border-bottom: 0; }
.pkg li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent, var(--plum));
  position: absolute; left: 4px; top: 18px;
}
.pkg .pkg-cta { margin-top: auto; }

/* ==== Story / about strip ==== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.story-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
  z-index: 2;
}
.story-copy h2 { margin-bottom: 0.4em; }
.story-copy .lede { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 1.4em; }

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--coral);
  margin-top: 32px;
}

/* ==== Stats ==== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--plum-deep);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==== Seminars gallery ==== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-sm);
  position: relative;
  background: var(--plum);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .city {
  position: absolute;
  bottom: 12px; left: 12px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  background: rgba(63,46,81,0.7);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ==== FAQ ==== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--plum-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--coral);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--coral); }
.faq-body {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 70ch;
}

/* ==== Contact ==== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 40px;
}
.contact-card h3 { margin-bottom: 24px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--coral);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row .lbl { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact-row .val { font-family: var(--serif); font-size: 1.15rem; color: var(--plum-deep); }

/* ==== CTA banner ==== */
.cta-banner {
  background: var(--plum-deep);
  color: white;
  border-radius: var(--r-lg);
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  right: -120px; top: -160px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.35;
  border-radius: 50%;
}
.cta-banner h2 { color: white; margin: 0; }
.cta-banner p { color: rgba(255,255,255,0.78); margin: 16px 0 0; max-width: 50ch; }
.cta-banner .cta-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ==== Footer ==== */
.site-footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer h4 {
  color: white;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 6px 0; }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 32ch; margin-top: 18px; }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 4px;
}
.footer-brand .footer-logo img { height: 42px; }
.footer-brand .footer-logo .brand-name { color: white; }
.footer-badges { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.footer-badges img { height: 64px; background: white; padding: 4px; border-radius: var(--r-sm); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.social-row a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
}

/* ==== Page hero (smaller, for inner pages) ==== */
.page-hero {
  padding: 100px 0 70px;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(250,206,131,0.25), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.page-hero h1 {
  margin: 0 0 0.3em;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}
.page-hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ==== Floating WhatsApp ==== */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  box-shadow: var(--shadow-deep);
  z-index: 60;
  transition: transform 0.2s;
}
.fab-wa:hover { transform: scale(1.06); color: white; }
.fab-wa svg { width: 28px; height: 28px; fill: white; }

/* ==== Timeline / process / cert grids (inner pages) ==== */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.timeline-grid > div { padding: 36px 24px; border-right: 1px solid var(--line); }
.timeline-grid > div:last-child { border-right: 0; }
.timeline-year { font-family: var(--serif); font-size: 1.2rem; color: var(--coral); margin-bottom: 8px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.cert-badges { display: flex; gap: 32px; align-items: center; justify-content: center; }
.cert-badges img { height: 160px; width: auto; }

/* ==== Responsive ==== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 50vh; }
  .hero-copy { padding: 60px 28px 80px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .pillar-grid, .pkg-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px; }
  .cta-banner .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-bottom { flex-direction: column; }

  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline-grid > div:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: 1fr; gap: 36px; }

  section.block { padding: 70px 0; }

  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: var(--paper);
    flex-direction: column;
    padding: 100px 36px 36px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-deep);
    align-items: stretch;
    gap: 0;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 16px 0; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 24px; justify-content: center; }

  .topbar .container { padding: 8px 16px; }
  .topbar .topbar-left { display: none; }

  .hero-meta { gap: 20px; margin-top: 36px; }
  .hero-meta .badge-stack { margin-left: 0; }
}

@media (max-width: 540px) {
  .container { padding: 0 20px; }
  .hero-copy { padding: 48px 20px 60px; }
  .pkg, .contact-card { padding: 28px 22px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
