:root {
  --ink: #15282d;
  --ink-soft: #3b5055;
  --teal: #167a85;
  --teal-dark: #0e5962;
  --teal-pale: #e8f4f4;
  --gold: #c99a50;
  --gold-dark: #a97931;
  --ivory: #fbf8f1;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #d9e0df;
  --muted: #66777b;
  --shadow: 0 22px 70px rgba(17, 45, 51, 0.13);
  --shadow-soft: 0 14px 38px rgba(17, 45, 51, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 105px 0;
  position: relative;
}

.section-sm {
  padding: 72px 0;
}

.section-white {
  background: var(--paper);
}

.section-tint {
  background: linear-gradient(180deg, #eef8f7 0%, #f8fbfa 100%);
}

.section-dark {
  background: radial-gradient(circle at 78% 20%, rgba(201, 154, 80, .18), transparent 30%), var(--ink);
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-dark .eyebrow {
  color: #93d3d7;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

h1,
h2,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(3.15rem, 7vw, 6.25rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 720px;
}

.section-dark .lead {
  color: #d8e4e5;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(22, 122, 133, .24);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-dark {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(21, 40, 45, .2);
}

.btn-dark:hover {
  background: #0b1e23;
}

.btn-outline {
  color: var(--ink);
  border-color: #bdcac8;
  background: rgba(255, 255, 255, .65);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: white;
}

.btn-gold {
  color: #2e2414;
  background: linear-gradient(135deg, #e7c687, #c99443);
  box-shadow: 0 12px 28px rgba(201, 154, 80, .24);
}

.btn-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: .92rem;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 224, 223, .8);
  background: rgba(251, 248, 241, .9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  margin-top: 5px;
  font-size: .67rem;
  color: var(--muted);
  letter-spacing: .12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-links button {
  border: 0;
  background: transparent;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 750;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links button:hover {
  color: var(--teal-dark);
  background: white;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

/* Hero */
.hero {
  min-height: 760px;
  padding: 86px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 12%, rgba(201, 154, 80, .16), transparent 29%),
    radial-gradient(circle at 92% 70%, rgba(22, 122, 133, .12), transparent 27%),
    linear-gradient(180deg, #fffdf9 0%, #f7f3eb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 110px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(201, 154, 80, .32);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(201, 154, 80, .05), 0 0 0 96px rgba(201, 154, 80, .03);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 74px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 690px;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero-copy .lead {
  max-width: 650px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-chip {
  padding: 9px 13px;
  border: 1px solid #d9ded7;
  background: rgba(255, 255, 255, .72);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero-media {
  position: relative;
  padding: 28px 28px 0 0;
}

.hero-photo-wrap {
  position: relative;
  border-radius: 220px 220px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d9dfdc;
}

.hero-photo {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(12, 34, 39, .42));
}

.hero-badge {
  position: absolute;
  left: -42px;
  bottom: 56px;
  z-index: 2;
  max-width: 230px;
  padding: 18px;
  border-radius: 20px;
  color: white;
  background: rgba(21, 40, 45, .94);
  box-shadow: var(--shadow-soft);
}

.hero-badge strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.hero-badge span {
  display: block;
  margin-top: 4px;
  color: #c7d8d9;
  font-size: .87rem;
}

.youtube-mini {
  position: absolute;
  right: 0;
  top: 2px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  font-size: .88rem;
}

.youtube-dot {
  width: 26px;
  height: 19px;
  border-radius: 6px;
  background: #e62b2b;
  position: relative;
}

.youtube-dot::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  border-left: 8px solid white;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* General grids */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 46px;
}

.section-head>div:first-child {
  max-width: 760px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 30px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
}

.feature-card p {
  color: var(--muted);
}

/* Audience */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: inherit;
  pointer-events: none;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-weight: 900;
  font-size: .82rem;
}

/* Steps */
.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  counter-increment: steps;
  padding: 30px;
  border-top: 3px solid var(--gold);
  background: white;
  border-radius: 0 0 22px 22px;
  box-shadow: var(--shadow-soft);
}

.step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 22px;
  font-family: Georgia, serif;
  font-size: 2.25rem;
  color: var(--gold-dark);
}

.step p {
  color: var(--muted);
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  overflow: hidden;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.video-thumb {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background: #15282d;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.035);
}

.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.play::after {
  content: "";
  margin-left: 4px;
  border-left: 15px solid var(--teal-dark);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.video-copy {
  padding: 18px 20px 21px;
}

.video-copy span {
  color: var(--teal);
  font-weight: 800;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.video-copy h3 {
  margin: 6px 0 0;
  font-size: 1.18rem;
}

/* About */
.about-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 62px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow);
}

.about-panel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 190px 190px 24px 24px;
}

.about-copy p {
  color: var(--ink-soft);
}

.signature {
  margin-top: 24px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--teal-dark);
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 24px;
  background: #16292e;
  box-shadow: var(--shadow-soft);
}

.project-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .4s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 23, 27, .08), rgba(9, 23, 27, .86));
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card-content {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: white;
}

.project-card-content small {
  color: #bcd8da;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-card-content h3 {
  margin: 6px 0 0;
}

/* CTA pricing teaser */
.price-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--ink), #21464d);
  color: white;
  box-shadow: var(--shadow);
}

.price-teaser p {
  color: #d4e0e1;
}

/* Gift */
.gift-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 46px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fffdf8, #f5ecdc);
  border: 1px solid #e5d5b8;
  box-shadow: var(--shadow);
}

.gift-shell::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -75px;
  top: -90px;
  border: 1px solid rgba(201, 154, 80, .4);
  box-shadow: 0 0 0 32px rgba(201, 154, 80, .06);
}

.gift-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 35px rgba(82, 59, 24, .16);
  transform: rotate(-1.5deg);
}

.gift-image img {
  width: 100%;
}

.gift-copy {
  position: relative;
  z-index: 1;
}

.gift-copy p {
  color: #5f5a50;
}

/* Wedding */
.wedding-strip {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: white;
}

.wedding-strip img {
  width: 220px;
  height: 145px;
  object-fit: cover;
  border-radius: 16px;
}

.wedding-strip p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 56px 0 34px;
  background: #0e2227;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-copy {
  max-width: 470px;
  color: #b9ccce;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links h4 {
  font-size: 1rem;
  color: #8fb7bb;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links a {
  color: #d9e6e7;
}

.footer-links a:hover {
  color: white;
}

.socials {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  transition: background .2s ease, transform .2s ease;
}

.socials a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #8fa8ab;
  font-size: .86rem;
}

/* Pricing page */
.page-hero {
  padding: 82px 0 62px;
  background: radial-gradient(circle at 80% 0%, rgba(201, 154, 80, .17), transparent 35%), linear-gradient(180deg, #fffdf9, #f3f7f6);
}

.page-hero .lead {
  max-width: 780px;
}

.info-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-weight: 850;
  border-bottom: 1px solid rgba(22, 122, 133, .35);
}

.price-group-label {
  margin: 12px 0 25px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--teal);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 30px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: #9ac7ca;
  box-shadow: 0 20px 55px rgba(22, 122, 133, .15);
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card .frequency {
  color: var(--teal);
  font-weight: 800;
}

.price-card .price {
  margin: 22px 0 2px;
  font-family: Georgia, serif;
  font-size: 3.35rem;
  line-height: 1;
}

.price-card .per {
  color: var(--muted);
  font-size: .92rem;
}

.price-card ul {
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
}

.price-card li {
  display: flex;
  gap: 9px;
}

.price-card li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.single-session {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px dashed #aebdbb;
  border-radius: 18px;
  background: #fbfcfb;
}

.single-session h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.single-session p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.single-session .single-price {
  white-space: nowrap;
  font-family: Georgia, serif;
  font-size: 1.75rem;
}

.flex-price {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #123039, #1f5d65);
  color: white;
  box-shadow: var(--shadow);
}

.flex-price p {
  color: #d3e2e3;
}

.flex-price .micro {
  font-size: .92rem;
  color: #a9c9cc;
}

.flex-price-side {
  text-align: center;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
}

.flex-price-side .price {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.flex-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.addon {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.addon-price {
  white-space: nowrap;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--teal-dark);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--teal-pale);
  border: 1px solid #cbe3e4;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 22, 26, .72);
  backdrop-filter: blur(8px);
}

.modal.open {
  display: flex;
}

.modal-dialog {
  width: min(820px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border-radius: 28px;
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.modal-head h2 {
  margin: 0;
  font-size: 2rem;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef3f2;
  font-size: 1.5rem;
}

.modal-body {
  padding: 30px 32px 34px;
}

.modal-body p,
.modal-body li {
  color: var(--ink-soft);
}

.modal-body ul {
  padding-left: 20px;
}

.modal-callout {
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #faf5eb;
  border-radius: 0 14px 14px 0;
}

.modal-gift-image {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    padding: 16px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links button {
    text-align: left;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .about-panel,
  .gift-shell,
  .flex-price {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-media {
    max-width: 650px;
    margin: 10px auto 0;
  }

  .hero-photo {
    height: 560px;
  }

  .cards-3,
  .steps,
  .video-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-panel img {
    height: 500px;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .wedding-strip {
    grid-template-columns: 190px 1fr;
  }

  .wedding-strip .btn {
    grid-column: 1/-1;
    justify-self: start;
  }

  .single-session {
    grid-template-columns: 1fr auto;
  }

  .single-session .btn {
    grid-column: 1/-1;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 26px, 1180px);
    --radius-xl: 26px;
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 55px 0;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-photo {
    height: 470px;
  }

  .hero-media {
    padding: 18px 0 0 20px;
  }

  .hero-badge {
    left: 0;
    bottom: 28px;
    max-width: 205px;
  }

  .youtube-mini {
    right: 8px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .cards-3,
  .steps,
  .video-grid,
  .project-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .image-card img {
    min-height: 400px;
  }

  .about-panel {
    padding: 24px;
  }

  .about-panel img {
    height: 420px;
  }

  .price-teaser,
  .wedding-strip,
  .contact-box,
  .addon,
  .single-session {
    grid-template-columns: 1fr;
  }

  .price-teaser {
    padding: 32px 26px;
  }

  .gift-shell {
    padding: 28px 20px;
  }

  .wedding-strip img {
    width: 100%;
    height: 230px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .flex-price {
    padding: 30px 22px;
  }

  .modal {
    padding: 10px;
  }

  .modal-head {
    padding: 18px 20px;
  }

  .modal-body {
    padding: 24px 20px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* v2: sadržaj strogo prema dostavljenim dokumentima */
.hero-exact h1 {
  font-size: clamp(2.7rem, 5vw, 5.35rem);
  line-height: 1.02;
}

.hero-exact h1 em {
  display: inline;
}

.hero-logo-link {
  display: inline-flex;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.hero-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-subtitle {
  margin-top: 28px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink-soft);
  font-size: .94rem;
}

.hero-facts li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  top: 15px;
  color: var(--teal);
  font-weight: 900;
}

.compact-lead {
  font-size: 1.05rem;
}

.thumbnails-only .video-card {
  background: transparent;
}

.thumbnails-only .video-thumb {
  aspect-ratio: 16/9;
}

.thumbnails-only.project-grid .project-card {
  min-height: 270px;
}

.thumbnails-only.project-grid .project-card::after {
  background: linear-gradient(180deg, rgba(9, 23, 27, .02), rgba(9, 23, 27, .18));
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #123039, #1f5d65);
  color: white;
  box-shadow: var(--shadow);
}

.cta-strip h2 {
  color: white;
  margin-bottom: 0;
  max-width: 900px;
}

.light-outline {
  color: white !important;
  border-color: rgba(255, 255, 255, .35) !important;
  background: transparent !important;
}

.simple-footer {
  grid-template-columns: 1fr 1fr;
}

.price-mainline {
  margin: 26px 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.minimal-pricing .price-card {
  min-height: 390px;
}

.minimal-pricing .price-card>p:not(.frequency):not(.price-note) {
  color: var(--muted);
}

.minimal-pricing .price-card .btn {
  margin-top: auto;
}

.minimal-pricing .package-total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 10px 0 0;
}
.minimal-pricing .package-total strong {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
}
.minimal-pricing .package-total .package-label {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.minimal-pricing .prepay-note {
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.minimal-pricing .lesson-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.minimal-pricing .lesson-price .amount {
  font-family: Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
}
.minimal-pricing .lesson-price .unit {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 680px) {
  .minimal-pricing .package-total strong { font-size: 2.7rem; }
  .minimal-pricing .lesson-price .amount { font-size: 2.15rem; }
}

.price-note {
  margin: 20px 0;
  color: var(--muted);
  font-size: .92rem;
}

.addon-minimal {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.exact-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 30px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.exact-contact-line a {
  font-weight: 800;
}

.gift-image img {
  object-fit: contain;
}

@media (max-width: 760px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-exact h1 br {
    display: none;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

  .simple-footer {
    grid-template-columns: 1fr;
  }

  .exact-contact-line {
    align-items: flex-start;
    justify-content: flex-start;
  }
}


/* v3: dosljedno obraćanje s "vi", jasnija hijerarhija i kontaktni obrazac */
.section-description {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.section-dark .section-description {
  color: #d8e4e5;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--teal-dark);
  font-weight: 850;
  border-bottom: 1px solid rgba(22, 122, 133, .35);
}

.cta-strip .section-description {
  color: #d8e4e5;
}

.cta-strip h2 {
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(2.15rem, 4vw, 3.75rem);
}

.contact-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .09);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  color: #e7eeee;
  font-size: .9rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 145px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #8ed1d6;
  box-shadow: 0 0 0 4px rgba(142, 209, 214, .18);
}

.form-note {
  margin: 13px 0 0;
  color: #aac2c4;
  font-size: .82rem;
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .contact-form {
    padding: 24px 18px;
  }

  .contact-intro h2 {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
  }
}


/* v4: svi videothumbnailovi imaju jasnu poveznicu i play oznaku */
.image-card {
  display: block;
}

.media-link {
  cursor: pointer;
}

.media-link .play,
.project-card .play {
  z-index: 3;
  pointer-events: none;
  transition: transform .25s ease, background .25s ease;
}

.media-link:hover .play,
.project-card:hover .play,
.video-card:hover .play {
  transform: scale(1.08);
  background: rgba(255, 255, 255, .97);
}

.project-card::after {
  z-index: 1;
}

.project-card img {
  z-index: 0;
}

.project-card .play {
  position: absolute;
}

.media-link img {
  transition: transform .35s ease;
}

.media-link:hover img {
  transform: scale(1.025);
}

/* Šest videozapisa prikazuje se kao dvije uredne vrste po tri na širim zaslonima. */
#youtube .video-grid {
  row-gap: 24px;
}

/* Verzija 6: odabrani YouTube videozapisi reproduciraju se unutar stranice. */
.inline-video-link {
  position: relative;
}

.inline-video-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(9, 31, 36, .82);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(7px);
}

.inline-video-player {
  min-height: 0;
  aspect-ratio: 16 / 9;
  background: #07161a;
}

.inline-video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.inline-video-player::after {
  display: none;
}

@media (max-width: 680px) {
  .inline-video-hint {
    bottom: 18px;
  }
}


/* Local preview fallback for YouTube embeds opened via file://. */
.inline-video-local-notice {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 34px;
  background: linear-gradient(145deg, #102a2e, #173d42);
  color: #fff;
  text-align: center;
}

.inline-video-local-content {
  max-width: 520px;
}

.inline-video-local-content strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.inline-video-local-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 640px) {
  .inline-video-local-notice {
    min-height: 260px;
    padding: 24px;
  }
}