/* Otomatik uretilir: npm run build:css. Kaynak modulleri dogrudan duzenleyin. */

/* Kaynak: base.css */

:root {
  --paper: hsl(38 38% 98%);
  --paper-deep: hsl(35 40% 96%);
  --ink: hsl(28 11% 12%);
  --ink-soft: hsl(30 6% 34%);
  --gold: hsl(33 54% 48%);
  --gold-dark: hsl(32 56% 40%);
  --gold-light: hsl(37 65% 72%);
  --line: hsl(34 38% 88%);
  --white: hsl(0 0% 100%);
  --serif: "Italiana", "Times New Roman", serif;
  --script: "Parisienne", cursive;
  --sans: "Manrope", Arial, sans-serif;
  --radius-sm: 18px;
  --radius-md: 28px;
  --shadow-soft: 0 20px 60px hsl(31 27% 40% / 0.11);
  --shadow-photo: 0 16px 40px hsl(27 23% 26% / 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
  padding-top: var(--header-height);
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 15%, hsl(36 68% 94% / 0.62), transparent 28%),
    linear-gradient(135deg, var(--paper) 0%, hsl(42 33% 99%) 52%, var(--paper-deep) 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

/* Kaynak: package-invitation.css */

/* KiÅŸiselleÅŸtirilebilir paket daveti */
.package-invitation {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 132px) clamp(20px, 5vw, 80px);
  background: hsl(40 40% 98%);
  scroll-margin-top: var(--header-height);
}

.package-invitation::before {
  position: absolute;
  top: 8%;
  left: -8%;
  width: 38vw;
  height: 38vw;
  border: 1px solid hsl(33 50% 57% / 0.18);
  border-radius: 50%;
  content: "";
}

.package-invitation__inner {
  position: relative;
  display: grid;
  width: min(1360px, 100%);
  min-height: 680px;
  margin: 0 auto;
  border: 1px solid hsl(34 31% 84%);
  background: hsl(42 38% 99%);
  box-shadow: 0 30px 80px hsl(30 25% 26% / 0.1);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.package-invitation__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(52px, 6vw, 96px);
  flex-direction: column;
}

.package-invitation__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.package-invitation__eyebrow span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid hsl(33 52% 48% / 0.45);
  border-radius: 50%;
  font-size: 10px;
  place-items: center;
}

.package-invitation h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.package-invitation h2 em {
  color: var(--gold-dark);
  font-style: normal;
}

.package-invitation__copy > p:not(.package-invitation__eyebrow) {
  max-width: 560px;
  margin: 30px 0 0;
  color: hsl(28 7% 34%);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
}

.package-invitation__steps {
  display: flex;
  width: 100%;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.package-invitation__steps li {
  position: relative;
  display: flex;
  align-items: center;
  color: hsl(28 7% 40%);
  font-size: 11px;
  gap: 9px;
  flex: 1;
}

.package-invitation__steps li:not(:last-child)::after {
  width: 28%;
  height: 1px;
  margin-left: auto;
  background: hsl(34 28% 78%);
  content: "";
}

.package-invitation__steps span {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: hsl(0 0% 100%);
  background: var(--gold-dark);
  font-size: 10px;
  place-items: center;
}

.package-invitation__steps li:not(:first-child) span {
  border: 1px solid hsl(34 25% 77%);
  color: hsl(30 7% 45%);
  background: transparent;
}

.package-invitation__action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 310px);
  min-height: 62px;
  margin-top: 38px;
  padding: 0 19px 0 25px;
  border: 1px solid var(--gold-dark);
  color: hsl(0 0% 100%);
  background: var(--gold-dark);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  transition:
    background 240ms var(--ease),
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.package-invitation__action svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 240ms var(--ease);
}

.package-invitation__action:hover,
.package-invitation__action:focus-visible {
  background: hsl(31 58% 38%);
  box-shadow: 0 14px 26px hsl(31 50% 35% / 0.18);
  outline: none;
  transform: translateY(-2px);
}

.package-invitation__action:hover svg {
  transform: translateX(4px);
}

.package-invitation__visual {
  position: relative;
  min-height: 680px;
  padding: clamp(28px, 3vw, 48px);
  background: hsl(34 18% 85%);
}

.package-invitation__photo {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.package-invitation__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, hsl(27 26% 13% / 0.56));
  content: "";
}

.package-invitation__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 44%;
  transition: transform 900ms var(--ease);
}

.package-invitation__inner:hover .package-invitation__photo img {
  transform: scale(1.025);
}

.package-invitation__note {
  position: absolute;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 48px);
  left: clamp(24px, 3vw, 48px);
  z-index: 1;
  display: grid;
  padding: 25px 28px;
  border-top: 1px solid hsl(0 0% 100% / 0.58);
  color: hsl(0 0% 100%);
  backdrop-filter: blur(10px);
  background: hsl(27 18% 15% / 0.28);
  grid-template-columns: 1fr auto;
}

.package-invitation__note span {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-invitation__note strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  grid-row: span 2;
}

.package-invitation__note small {
  margin-top: 5px;
  color: hsl(38 30% 90%);
  font-size: 11px;
}

.package-invitation__monogram {
  position: absolute;
  top: clamp(28px, 3vw, 48px);
  right: clamp(28px, 3vw, 48px);
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid hsl(0 0% 100% / 0.65);
  border-radius: 50%;
  color: hsl(0 0% 100%);
  font-family: var(--serif);
  font-size: 19px;
  place-items: center;
}

@media (max-width: 900px) {
  .package-invitation__inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .package-invitation__copy {
    padding: clamp(44px, 8vw, 72px);
  }

  .package-invitation__visual {
    min-height: 540px;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .package-invitation {
    padding: 0;
    background: hsl(42 38% 99%);
  }

  .package-invitation::before {
    display: none;
  }

  .package-invitation__inner {
    border: 0;
    box-shadow: none;
  }

  .package-invitation__copy {
    align-items: center;
    padding: 52px 20px 28px;
    text-align: center;
  }

  .package-invitation__eyebrow {
    margin-bottom: 23px;
    font-size: 10px;
  }

  .package-invitation h2 {
    font-size: clamp(45px, 13.5vw, 68px);
    line-height: 1;
  }

  .package-invitation__copy > p:not(.package-invitation__eyebrow) {
    max-width: 420px;
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.65;
  }

  .package-invitation__steps {
    max-width: 390px;
    margin-top: 30px;
  }

  .package-invitation__steps li {
    display: grid;
    justify-items: center;
    font-size: 9px;
    gap: 6px;
  }

  .package-invitation__steps li:not(:last-child)::after {
    position: absolute;
    top: 13px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
  }

  .package-invitation__action {
    width: 100%;
    max-width: 390px;
    min-height: 58px;
    margin-top: 30px;
  }

  .package-invitation__visual {
    min-height: min(126vw, 590px);
    padding: 16px;
    grid-row: auto;
  }

  .package-invitation__photo {
    inset: 10px 10px 0;
  }

  .package-invitation__photo img {
    object-position: 50% 42%;
  }

  .package-invitation__note {
    right: 26px;
    bottom: 18px;
    left: 26px;
    padding: 18px 16px;
  }

  .package-invitation__note span,
  .package-invitation__note small {
    font-size: 9px;
  }

  .package-invitation__note strong {
    font-size: 21px;
  }

  .package-invitation__monogram {
    top: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-invitation__photo img,
  .package-invitation__action,
  .package-invitation__action svg {
    transition: none;
  }
}

@keyframes loader-emblem {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-progress {
  55%,
  100% {
    transform: translateX(100%);
  }
}

/* Kaynak: home.css */

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 0 clamp(30px, 3.2vw, 66px);
  border-bottom: 1px solid var(--line);
  background: hsl(39 38% 98% / 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  line-height: 1;
}

.brand__mark {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__name {
  font-family: var(--serif);
  font-size: clamp(27px, 2.1vw, 39px);
  letter-spacing: -0.045em;
}

.brand__year {
  color: var(--gold-dark);
  font-family: var(--script);
  font-size: clamp(24px, 1.8vw, 34px);
  white-space: nowrap;
  transform: translateY(2px) rotate(-3deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(25px, 2.6vw, 48px);
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  white-space: nowrap;
  transition: color 220ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--gold-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(0.22);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 11px;
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 9px 24px hsl(32 54% 42% / 0.16);
  cursor: pointer;
  font-weight: 600;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid hsl(33 45% 79%);
  border-radius: 13px;
  color: var(--gold-dark);
  background: hsl(0 0% 100% / 0.52);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease);
}

.header-login svg,
.header-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.header-login:hover,
.header-login:focus-visible {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-2px);
}

.header-cta:hover {
  box-shadow: 0 12px 28px hsl(32 54% 42% / 0.24);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid hsl(34 50% 84% / 0.55);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 62%;
  left: -130px;
  width: 260px;
  height: 260px;
}

.hero::after {
  right: -230px;
  bottom: -240px;
  width: 560px;
  height: 560px;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.88fr) minmax(610px, 1.12fr);
  align-items: center;
  gap: clamp(20px, 2.7vw, 52px);
  width: min(1435px, calc(100% - 80px));
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  margin: 0 auto;
  padding: clamp(24px, 5dvh, 64px) 0 clamp(22px, 4dvh, 52px);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding-top: 0;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  padding: 6px 20px 6px 9px;
  border: 1px solid hsl(33 51% 79%);
  border-radius: 99px;
  background: hsl(0 0% 100% / 0.66);
  box-shadow: 0 8px 22px hsl(31 35% 45% / 0.1);
  font-size: 14px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.proof-pill__icon {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  place-items: center;
}

.proof-pill__icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.proof-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  position: relative;
  z-index: 2;
  margin: clamp(18px, 3dvh, 40px) 0 0;
  font-family: var(--serif);
  font-size: clamp(49px, min(4.4vw, 8dvh), 75px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.99;
}

.hero h1::before,
.hero h1::after {
  position: absolute;
  color: var(--gold-light);
  content: "\2726";
  font-family: serif;
  font-size: 24px;
}

.hero h1::before {
  top: 8px;
  left: -30px;
}

.hero h1::after {
  right: -8px;
  bottom: 73px;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  position: relative;
  width: max-content;
  margin-top: 7px;
  color: var(--gold-dark);
  font-family: var(--script);
  font-size: 0.82em;
  font-style: normal;
  letter-spacing: -0.035em;
  line-height: 1.08;
  transform: rotate(-1.5deg);
}

.hero h1 em::after {
  position: absolute;
  right: 7%;
  bottom: -10px;
  left: 1%;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  transform: rotate(-3deg);
}

.hero__lead {
  margin: clamp(18px, 3.5dvh, 43px) 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.hero__lead strong {
  color: var(--ink);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 20px;
  margin-top: clamp(18px, 3dvh, 35px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 64px;
  padding: 0 29px;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 600;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.button svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, hsl(34 58% 53%), var(--gold-dark));
  box-shadow: 0 13px 30px hsl(32 54% 40% / 0.19);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 17px 35px hsl(32 54% 40% / 0.28);
  transform: translateY(-2px);
}

.button--outline {
  min-width: 198px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: hsl(0 0% 100% / 0.25);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--white);
  background: var(--gold);
  transform: translateY(-2px);
}

.button__arrow {
  margin-left: 5px;
}

.hero-collage {
  position: relative;
  align-self: center;
  width: 100%;
  height: clamp(540px, calc(100svh - var(--header-height) - 12px), 690px);
  height: clamp(540px, calc(100dvh - var(--header-height) - 12px), 690px);
}

.photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-photo);
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo--main {
  top: 0;
  right: 36px;
  width: 91%;
  height: 65.2%;
  transform: rotate(-0.7deg);
}

.photo--main img {
  object-position: center 47%;
}

.photo--bride {
  bottom: 5px;
  left: 0;
  z-index: 4;
  width: 29%;
  height: 40.9%;
  transform: rotate(-4deg);
}

.photo--bride img {
  object-position: center 29%;
}

.photo--venue {
  bottom: -8px;
  left: 34%;
  z-index: 4;
  width: 32%;
  height: 38.8%;
  transform: rotate(1.2deg);
}

.photo--venue img {
  object-position: center 55%;
}

.photo--groom {
  right: 0;
  bottom: 11px;
  z-index: 4;
  width: 34%;
  height: 46.4%;
  transform: rotate(3.2deg);
}

.photo--groom img {
  object-position: center 32%;
}

.anniversary {
  position: absolute;
  top: 39px;
  right: -5px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 174px;
  border: 6px solid hsl(40 73% 85%);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 32% 25%, hsl(38 68% 68%), transparent 39%),
    linear-gradient(145deg, hsl(36 62% 61%), hsl(32 53% 43%));
  box-shadow:
    0 14px 35px hsl(32 50% 38% / 0.27),
    inset 0 0 0 1px hsl(44 76% 87% / 0.54);
  font-family: var(--serif);
}

.anniversary::before {
  position: absolute;
  inset: 9px;
  border: 1px solid hsl(43 75% 87% / 0.48);
  border-radius: inherit;
  content: "";
}

.anniversary__number {
  font-size: 58px;
  line-height: 0.86;
}

.anniversary__label {
  margin-top: 5px;
  font-size: 30px;
}

.anniversary svg {
  position: absolute;
  bottom: 19px;
  width: 115px;
  fill: none;
  stroke: hsl(42 70% 87% / 0.85);
  stroke-width: 2;
}

.spark {
  position: absolute;
  z-index: 8;
  color: hsl(38 77% 67%);
}

.spark--one {
  top: 188px;
  right: -23px;
  font-size: 17px;
}

.spark--two {
  top: 208px;
  right: 8px;
  font-size: 9px;
}

.spark--three {
  top: 165px;
  right: -10px;
  font-size: 29px;
}

.benefits-section {
  padding: clamp(24px, 2.8vw, 38px) clamp(20px, 2vw, 40px);
  background: hsl(42 33% 99%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1600px, 100%);
  margin: 0 auto;
}

.benefit-card {
  display: grid;
  grid-template-columns: clamp(54px, 4.6vw, 72px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(12px, 1.1vw, 18px);
  min-width: 0;
  padding: 0 clamp(10px, 1.1vw, 20px);
  border-right: 1px solid var(--line);
}

.benefit-card:first-child {
  padding-left: 0;
}

.benefit-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-icon {
  display: grid;
  width: clamp(54px, 4.6vw, 72px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--gold-dark);
  background: radial-gradient(circle at 38% 30%, hsl(40 58% 99%), transparent 45%), hsl(34 38% 96%);
  place-items: center;
}

.benefit-icon svg {
  width: 52%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.benefit-icon__mobile {
  display: none;
}

.benefit-title {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.benefit-title span {
  display: block;
}

.benefit-title__lead {
  font-weight: inherit;
}

.benefit-card p {
  max-width: 220px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.5;
}

.benefits-divider {
  display: none;
}

.legacy-section {
  --legacy-accent: hsl(30 48% 52%);
  --legacy-accent-soft: hsl(32 46% 78%);
  --legacy-paper: hsl(37 35% 98%);
  --legacy-line: hsl(32 42% 82%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--legacy-paper);
}

.legacy-intro {
  position: relative;
  min-height: clamp(550px, 43vw, 670px);
  overflow: hidden;
  background:
    radial-gradient(circle at 69% 35%, hsl(35 55% 92% / 0.62), transparent 25%),
    radial-gradient(circle at 20% 10%, hsl(0 0% 100% / 0.92), transparent 35%),
    linear-gradient(155deg, hsl(40 42% 99%), hsl(32 32% 96%));
}

.legacy-intro::after {
  position: absolute;
  right: -5%;
  bottom: -145px;
  left: -5%;
  z-index: -1;
  height: 260px;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  background: hsl(35 34% 94% / 0.78);
  content: "";
}

.legacy-intro__inner {
  display: grid;
  grid-template-columns: minmax(410px, 0.85fr) minmax(570px, 1.15fr);
  align-items: center;
  gap: clamp(36px, 5vw, 90px);
  width: min(1260px, calc(100% - 80px));
  min-height: inherit;
  margin: 0 auto;
  padding: 55px 0 62px;
}

.legacy-copy {
  position: relative;
  z-index: 3;
  text-align: center;
}

.legacy-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--legacy-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.legacy-kicker span {
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.legacy-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(49px, 4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.legacy-copy h2 span,
.legacy-copy h2 em {
  display: block;
}

.legacy-copy h2 em {
  margin-top: 8px;
  color: var(--legacy-accent);
  font-style: italic;
}

.legacy-flourish,
.legacy-photo figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--legacy-accent);
}

.legacy-flourish {
  width: min(250px, 60%);
  margin: 24px auto 30px;
}

.legacy-flourish span,
.legacy-photo figcaption span {
  height: 1px;
  background: currentColor;
  flex: 1;
}

.legacy-flourish svg,
.legacy-photo figcaption svg {
  width: 23px;
  fill: currentColor;
}

.legacy-lead {
  max-width: 520px;
  margin: 0 auto;
  color: hsl(28 7% 26%);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.72;
}

.legacy-collage {
  position: relative;
  z-index: 2;
  height: 480px;
}

.legacy-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 12px solid hsl(38 38% 99%);
  border-radius: 14px;
  background: hsl(38 38% 99%);
  box-shadow: 0 22px 45px hsl(30 16% 26% / 0.13);
}

.legacy-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-photo--left,
.legacy-photo--right {
  top: 76px;
  width: 36%;
  height: 355px;
}

.legacy-photo--left {
  left: 0;
  transform: rotate(-7deg);
}

.legacy-photo--left img {
  object-position: center;
}

.legacy-photo--right {
  right: 0;
  transform: rotate(7deg);
}

.legacy-photo--right img {
  object-position: 48% center;
}

.legacy-photo--center {
  top: 0;
  left: 50%;
  z-index: 3;
  width: 50%;
  height: 455px;
  padding-bottom: 64px;
  transform: translateX(-50%);
}

.legacy-photo--center img {
  object-position: center;
}

.legacy-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 20px;
  left: 16px;
}

.legacy-photo figcaption svg {
  width: 20px;
}

.legacy-botanical {
  position: absolute;
  z-index: 1;
  width: 180px;
  fill: none;
  stroke: var(--legacy-accent-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  opacity: 0.55;
}

.legacy-botanical--left {
  top: -32px;
  left: -22px;
  transform: rotate(-42deg);
}

.legacy-botanical--right {
  top: 20px;
  right: -12px;
  transform: scaleX(-1) rotate(-10deg);
}

.legacy-values {
  position: relative;
  z-index: 4;
  padding: 50px 38px 58px;
  background: linear-gradient(hsl(0 0% 100% / 0.72), hsl(0 0% 100% / 0.72)), var(--legacy-paper);
}

.legacy-values__heading {
  width: min(880px, 100%);
  margin: 0 auto 72px;
  text-align: center;
}

.legacy-values__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.legacy-values__heading p {
  margin: 18px auto 0;
  color: hsl(29 6% 32%);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.legacy-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1320px, 100%);
  min-height: 270px;
  margin: 0 auto;
  padding: 32px 12px 28px;
  border-radius: 30px;
  background: hsl(0 0% 100% / 0.72);
  box-shadow: 0 20px 55px hsl(31 20% 35% / 0.08);
}

.legacy-value {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(30px, 4vw, 70px);
  text-align: center;
}

.legacy-value + .legacy-value {
  border-left: 1px solid var(--legacy-line);
}

.legacy-value__icon {
  display: grid;
  width: 76px;
  aspect-ratio: 1;
  margin-top: -66px;
  border: 1px solid hsl(32 43% 87%);
  border-radius: 50%;
  color: var(--legacy-accent);
  background: radial-gradient(circle at 35% 25%, hsl(0 0% 100%), transparent 40%), hsl(34 45% 96%);
  box-shadow: 0 10px 20px hsl(31 27% 40% / 0.11);
  place-items: center;
}

.legacy-value__icon svg {
  width: 47%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.legacy-value h3 {
  margin: 28px 0 12px;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.035em;
}

.legacy-value__dash {
  width: 28px;
  height: 2px;
  margin-bottom: 16px;
  background: var(--legacy-accent);
}

.legacy-value p {
  max-width: 315px;
  margin: 0;
  color: hsl(29 6% 32%);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
}

.legacy-values__heart {
  position: absolute;
  bottom: 28px;
  left: 50%;
  display: grid;
  width: 132px;
  height: 48px;
  border-radius: 99px;
  color: var(--white);
  background: linear-gradient(135deg, hsl(31 52% 58%), hsl(29 50% 46%));
  box-shadow: 0 10px 22px hsl(31 30% 30% / 0.15);
  place-items: center;
  transform: translate(-50%, 50%);
}

.legacy-values__heart svg {
  width: 21px;
  fill: currentColor;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 28px;
  }

  .desktop-nav {
    gap: 22px;
    font-size: 13px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-login,
  .header-cta {
    padding-inline: 16px;
    font-size: 13px;
  }

  .hero__inner {
    grid-template-columns: minmax(470px, 0.9fr) minmax(500px, 1.1fr);
    width: min(1180px, calc(100% - 54px));
  }

  .hero h1 {
    font-size: 59px;
  }

  .hero-collage {
    height: clamp(500px, calc(100svh - var(--header-height) - 12px), 620px);
    height: clamp(500px, calc(100dvh - var(--header-height) - 12px), 620px);
  }

  .photo--main {
    height: 65.2%;
  }

  .photo--bride {
    height: 40.9%;
  }

  .photo--venue {
    height: 38.8%;
  }

  .photo--groom {
    height: 46.4%;
  }

  .anniversary {
    width: 150px;
    height: 150px;
  }

  .anniversary__number {
    font-size: 48px;
  }

}

@media (max-width: 1060px) {
  :root {
    --header-height: 92px;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    min-height: var(--header-height);
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    justify-self: end;
    width: 55px;
    height: 55px;
    padding: 14px;
    border: 1px solid hsl(34 45% 86%);
    border-radius: 17px;
    background: hsl(35 34% 94%);
    cursor: pointer;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 3px 0;
    border-radius: 9px;
    background: var(--gold-dark);
    transition:
      transform 250ms var(--ease),
      opacity 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 18;
    top: 92px;
    right: 0;
    left: 0;
    display: grid;
    gap: 28px;
    padding: 30px clamp(25px, 6vw, 60px) 38px;
    border-bottom: 1px solid var(--line);
    background: hsl(39 38% 98% / 0.98);
    box-shadow: 0 25px 40px hsl(27 24% 20% / 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition:
      opacity 220ms ease,
      transform 320ms var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    gap: 4px;
  }

  .mobile-menu nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 24px;
  }

  .mobile-menu nav a.is-active {
    color: var(--gold-dark);
  }

  .mobile-menu .button {
    width: 100%;
  }

  .mobile-menu__actions {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 10px;
  }

  .mobile-login-button {
    border: 1px solid hsl(33 45% 79%);
    color: var(--gold-dark);
    background: var(--white);
  }

  .hero {
    height: auto;
    min-height: 0;
  }

  .hero__inner {
    display: flex;
    flex-direction: column;
    gap: clamp(7px, 1.35dvh, 14px);
    width: min(840px, calc(100% - 48px));
    height: auto;
    min-height: 0;
    padding: clamp(10px, 2dvh, 22px) 0 0;
  }

  .hero__copy {
    display: contents;
  }

  .hero-collage {
    order: 1;
    width: 100%;
    height: clamp(190px, 32dvh, 360px);
    flex: 0 1 auto;
  }

  .proof-pill {
    order: 2;
    align-self: center;
  }

  .hero h1 {
    order: 3;
    margin: 0;
    text-align: center;
    font-size: clamp(38px, min(7vw, 7dvh), 64px);
    line-height: 0.94;
  }

  .hero h1 em {
    margin-inline: auto;
  }

  .hero h1::before {
    left: 7%;
  }

  .hero h1::after {
    right: 6%;
  }

  .hero__lead {
    order: 4;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.5;
  }

  .hero__actions {
    order: 5;
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .hero__actions .button {
    flex: 1 1 50%;
  }

  .photo--main {
    right: 6%;
    width: 88%;
    height: 65.2%;
  }

  .photo--bride {
    left: 3%;
    width: 29%;
    height: 42%;
  }

  .photo--venue {
    left: 36%;
    width: 28%;
    height: 38.8%;
  }

  .photo--groom {
    right: 2%;
    width: 32%;
    height: 46.4%;
  }

  .anniversary {
    width: clamp(88px, 15dvh, 150px);
    height: clamp(88px, 15dvh, 150px);
  }
}

@media (min-width: 641px) and (max-width: 1060px) {
  .benefits-section {
    padding: 36px 24px 24px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .benefit-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, hsl(38 38% 97%), hsl(34 30% 94%));
  }

  .benefit-card:first-child,
  .benefit-card:last-child {
    padding: 14px;
  }

  .benefit-icon {
    width: 64px;
  }

  .benefit-card p {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 20px;
  }

  .brand {
    gap: 6px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__name {
    font-size: clamp(24px, 7.2vw, 31px);
  }

  .brand__year {
    font-size: clamp(20px, 6vw, 26px);
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .menu-toggle span {
    width: 23px;
  }

  .mobile-menu {
    top: 86px;
  }

  .hero__inner {
    gap: clamp(4px, 1dvh, 9px);
    width: calc(100% - 26px);
    padding: clamp(7px, 1.3dvh, 13px) 0 0;
  }

  .hero-collage {
    height: clamp(104px, calc(100dvh - 465px), 300px);
  }

  .photo {
    border-width: 5px;
    border-radius: 18px;
  }

  .photo--main {
    top: 8px;
    right: 5%;
    width: 90%;
    height: 62%;
  }

  .photo--main img {
    object-position: center center;
  }

  .photo--bride {
    bottom: 4%;
    left: 1%;
    width: 30%;
    height: 45%;
    transform: rotate(-5deg);
  }

  .photo--venue {
    bottom: 0;
    left: 34.5%;
    width: 30%;
    height: 38%;
  }

  .photo--groom {
    right: 0;
    bottom: 5%;
    width: 34%;
    height: 46%;
  }

  .anniversary {
    top: 0;
    right: -1px;
    width: clamp(88px, 24vw, 116px);
    height: clamp(88px, 24vw, 116px);
    border-width: 4px;
  }

  .anniversary__number {
    font-size: clamp(31px, 9vw, 40px);
  }

  .anniversary__label {
    margin-top: 3px;
    font-size: clamp(16px, 5vw, 22px);
  }

  .anniversary svg {
    bottom: 10px;
    width: 72%;
  }

  .spark--one {
    top: 24%;
    right: -3px;
  }

  .spark--two,
  .spark--three {
    display: none;
  }

  .proof-pill {
    gap: 8px;
    min-height: 37px;
    padding: 5px 12px 5px 6px;
    font-size: clamp(10px, 2.9vw, 13px);
  }

  .proof-pill__icon {
    width: 27px;
    height: 27px;
  }

  .proof-pill i {
    width: 4px;
    height: 4px;
  }

  .hero h1 {
    margin-top: 0;
    font-size: clamp(34px, min(12vw, 7dvh), 50px);
    line-height: 0.94;
  }

  .hero h1 em {
    width: auto;
    max-width: 100%;
    margin-top: 5px;
    font-size: 0.75em;
    line-height: 1.1;
  }

  .hero h1::before {
    top: -5px;
    left: 2%;
    font-size: 16px;
  }

  .hero h1::after {
    right: 2%;
    bottom: 53px;
    font-size: 18px;
  }

  .hero__lead {
    margin-top: 0;
    padding: 0 12px;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.45;
  }

  .hero__lead br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    gap: 7px;
    margin-top: 0;
    padding: 0 9px;
  }

  .button {
    min-height: 47px;
    padding-inline: 22px;
  }

  .button--outline {
    min-width: 0;
  }

  .benefits-section {
    padding: 28px 10px 18px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 6px;
  }

  .benefit-card {
    grid-template-columns: clamp(38px, 11vw, 48px) minmax(0, 1fr);
    gap: clamp(5px, 1.5vw, 8px);
    min-height: 72px;
    padding: 7px 5px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, hsl(38 38% 97%), hsl(34 30% 94%));
  }

  .benefit-card:first-child,
  .benefit-card:last-child {
    padding: 7px 5px;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    border: 1px solid hsl(33 46% 57%);
    background: hsl(40 30% 99% / 0.7);
  }

  .benefit-card__content {
    align-self: center;
    min-width: 0;
    padding-left: clamp(5px, 1.5vw, 8px);
    border-left: 1px solid hsl(33 46% 57%);
  }

  .benefit-icon__desktop,
  .benefit-card p {
    display: none;
  }

  .benefit-icon__mobile {
    display: block;
  }

  .benefit-title {
    margin: 0;
    letter-spacing: -0.025em;
    line-height: 1.15;
  }

  .benefit-title__lead {
    text-transform: uppercase;
    font-weight: 750;
    font-size: clamp(12px, 3.1vw, 15px);
    white-space: nowrap;
  }

  .benefit-title span:not(.benefit-title__lead) {
    margin-top: 4px;
    font-size: clamp(12px, 2.8vw, 14px);
    font-weight: 450;
    white-space: nowrap;
  }

  .benefits-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(760px, 75%);
    margin: 16px auto 0;
    color: hsl(33 48% 56%);
  }

  .benefits-divider::before,
  .benefits-divider::after {
    height: 1px;
    background: currentColor;
    content: "";
    flex: 1;
  }
}

@media (min-width: 1061px) and (max-height: 760px) {
  .hero__inner {
    gap: clamp(20px, 2.2vw, 34px);
    padding-block: clamp(10px, 1.8dvh, 14px);
  }

  .proof-pill {
    gap: 13px;
    min-height: 40px;
    padding: 5px 16px 5px 7px;
    font-size: 12px;
  }

  .proof-pill__icon {
    width: 28px;
    height: 28px;
  }

  .proof-pill__icon svg {
    width: 16px;
  }

  .hero h1 {
    margin-top: clamp(8px, 1.5dvh, 12px);
    font-size: clamp(46px, min(3.8vw, 7.2dvh), 56px);
    line-height: 0.94;
  }

  .hero h1 em {
    margin-top: 3px;
  }

  .hero h1 em::after {
    bottom: -6px;
  }

  .hero__lead {
    margin-top: clamp(10px, 1.8dvh, 14px);
    font-size: clamp(14px, 1.08vw, 16px);
    line-height: 1.48;
  }

  .hero__actions {
    gap: 14px;
    margin-top: clamp(10px, 1.8dvh, 14px);
  }

  .button {
    min-height: 50px;
    padding-inline: 24px;
  }

  .hero-collage {
    height: min(540px, calc(100% - 8px));
  }

  .photo {
    border-width: 6px;
    border-radius: 22px;
  }

  .anniversary {
    top: 24px;
    width: 136px;
    height: 136px;
    border-width: 5px;
  }

  .anniversary__number {
    font-size: 44px;
  }

  .anniversary__label {
    font-size: 25px;
  }

  .anniversary svg {
    bottom: 14px;
    width: 88px;
  }
}

@media (max-width: 1060px) {
  .legacy-intro__inner {
    grid-template-columns: minmax(340px, 0.8fr) minmax(440px, 1.2fr);
    gap: 24px;
    width: calc(100% - 42px);
  }

  .legacy-copy h2 {
    font-size: clamp(42px, 5vw, 53px);
  }

  .legacy-collage {
    height: 420px;
  }

  .legacy-photo--left,
  .legacy-photo--right {
    top: 70px;
    height: 310px;
  }

  .legacy-photo--center {
    height: 405px;
  }

  .legacy-value {
    padding-inline: clamp(18px, 3vw, 38px);
  }
}

@media (max-width: 760px) {
  .legacy-intro {
    min-height: 0;
  }

  .legacy-intro::after {
    bottom: -195px;
  }

  .legacy-intro__inner {
    display: flex;
    flex-direction: column;
    width: calc(100% - 28px);
    padding: clamp(42px, 9vw, 70px) 0 clamp(64px, 12vw, 94px);
  }

  .legacy-copy {
    order: 2;
  }

  .legacy-collage {
    order: 1;
    width: min(92vw, 590px);
    height: clamp(280px, 76vw, 465px);
    margin: 0 auto clamp(38px, 8vw, 62px);
  }

  .legacy-photo {
    border-width: clamp(7px, 1.8vw, 11px);
    border-radius: clamp(10px, 2.5vw, 16px);
  }

  .legacy-photo--left,
  .legacy-photo--right {
    top: 16%;
    width: 35%;
    height: 73%;
  }

  .legacy-photo--left {
    left: 1%;
  }

  .legacy-photo--right {
    right: 1%;
  }

  .legacy-photo--center {
    width: 49%;
    height: 93%;
    padding-bottom: clamp(38px, 9vw, 58px);
  }

  .legacy-photo figcaption {
    right: 10px;
    bottom: clamp(10px, 2.8vw, 18px);
    left: 10px;
    gap: 7px;
  }

  .legacy-photo figcaption svg {
    width: clamp(13px, 4vw, 20px);
  }

  .legacy-kicker {
    gap: 11px;
    margin-bottom: 18px;
    font-size: clamp(9px, 2.65vw, 12px);
    letter-spacing: 0.3em;
  }

  .legacy-kicker span {
    width: 20px;
  }

  .legacy-copy h2 {
    font-size: clamp(41px, 11.8vw, 63px);
    line-height: 1.04;
  }

  .legacy-copy h2 em {
    margin-top: 4px;
  }

  .legacy-flourish {
    margin: 21px auto 27px;
  }

  .legacy-lead {
    max-width: 640px;
    padding-inline: clamp(10px, 5vw, 36px);
    font-size: clamp(14px, 4vw, 19px);
    line-height: 1.7;
  }

  .legacy-botanical--left {
    display: none;
  }

  .legacy-botanical--right {
    top: 12px;
    right: -54px;
    width: clamp(145px, 42vw, 220px);
    opacity: 0.62;
  }

  .legacy-values {
    padding: clamp(56px, 13vw, 82px) clamp(10px, 4vw, 30px) clamp(52px, 11vw, 74px);
  }

  .legacy-values__grid {
    min-height: clamp(310px, 82vw, 470px);
    padding: 24px 0 22px;
    border-radius: clamp(18px, 5vw, 30px);
  }

  .legacy-value {
    justify-content: flex-start;
    padding: 0 clamp(8px, 3.2vw, 28px);
  }

  .legacy-value__icon {
    width: clamp(56px, 15vw, 84px);
    margin-top: clamp(-54px, -9vw, -34px);
  }

  .legacy-value h3 {
    margin: clamp(22px, 5vw, 32px) 0 10px;
    font-size: clamp(13px, 3.7vw, 21px);
    line-height: 1.2;
  }

  .legacy-value__dash {
    width: 24px;
    margin-bottom: 14px;
  }

  .legacy-value p {
    font-size: clamp(10px, 2.8vw, 15px);
    line-height: 1.65;
  }

  .legacy-values__heart {
    bottom: 26px;
    width: clamp(105px, 32vw, 145px);
    height: clamp(42px, 10vw, 52px);
  }
}

@media (max-width: 480px) {
  .legacy-intro__inner {
    width: calc(100% - 20px);
    padding: 18px 0 20px;
  }

  .legacy-collage {
    width: min(94vw, 420px);
    height: clamp(190px, 54vw, 230px);
    margin-bottom: 18px;
  }

  .legacy-photo {
    border-width: 5px;
    border-radius: 9px;
  }

  .legacy-photo--center {
    padding-bottom: 28px;
  }

  .legacy-photo figcaption {
    right: 7px;
    bottom: 7px;
    left: 7px;
    gap: 5px;
  }

  .legacy-photo figcaption svg {
    width: 11px;
  }

  .legacy-kicker {
    gap: 8px;
    margin-bottom: 9px;
    font-size: clamp(7.5px, 2.2vw, 9.5px);
    letter-spacing: 0.28em;
  }

  .legacy-kicker span {
    width: 16px;
  }

  .legacy-copy h2 {
    font-size: clamp(32px, 9.2vw, 40px);
    line-height: 1;
  }

  .legacy-copy h2 em {
    margin-top: 2px;
  }

  .legacy-flourish {
    width: min(200px, 58%);
    margin: 11px auto 13px;
    gap: 8px;
  }

  .legacy-flourish svg {
    width: 17px;
  }

  .legacy-lead {
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .legacy-botanical--right {
    right: -42px;
    width: 125px;
  }

  .legacy-values {
    padding: 38px 8px 30px;
  }

  .legacy-values__grid {
    min-height: 236px;
    padding: 12px 0;
    border-radius: 16px;
  }

  .legacy-value {
    padding-inline: 5px;
  }

  .legacy-value__icon {
    width: 48px;
    margin-top: -38px;
  }

  .legacy-value h3 {
    margin: 15px 0 6px;
    font-size: clamp(10.5px, 3vw, 13px);
  }

  .legacy-value__dash {
    width: 18px;
    height: 1px;
    margin-bottom: 7px;
  }

  .legacy-value p {
    font-size: clamp(8px, 2.3vw, 10px);
    line-height: 1.45;
  }

  .legacy-values__heart {
    bottom: 18px;
    width: 95px;
    height: 34px;
  }

  .legacy-values__heart svg {
    width: 16px;
  }
}

/* Kaynak: gallery.css */

/* Editorial photo gallery */
.gallery-section {
  --gallery-bg: hsl(38 43% 96%);
  --gallery-ink: hsl(28 16% 17%);
  --gallery-muted: hsl(29 12% 39%);
  --gallery-gold: hsl(33 54% 43%);
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 7vw, 118px) clamp(24px, 4vw, 72px) clamp(76px, 7vw, 112px);
  color: var(--gallery-ink);
  background:
    radial-gradient(circle at 50% 0%, hsl(38 72% 88% / 0.72), transparent 37%), var(--gallery-bg);
}

.gallery-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(hsl(33 45% 48% / 0.13) 0.6px, transparent 0.6px);
  background-size: 8px 8px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.gallery-section__inner {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.gallery-heading {
  max-width: 820px;
  margin: 0 auto clamp(42px, 4.5vw, 66px);
  text-align: center;
}

.gallery-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 20px;
  color: var(--gallery-gold);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 650;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.gallery-kicker::before,
.gallery-kicker::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.6;
}

.gallery-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.1vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.gallery-heading h2 em {
  color: var(--gallery-gold);
  font-style: normal;
}

.gallery-heading > p:last-child {
  max-width: 680px;
  margin: 23px auto 0;
  color: var(--gallery-muted);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.72;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(5, clamp(108px, 9.2vw, 142px));
  gap: clamp(10px, 1vw, 16px);
}

.gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: clamp(14px, 1.25vw, 20px);
  color: var(--gallery-ink);
  background: hsl(27 12% 16%);
  box-shadow: 0 18px 44px hsl(0 0% 0% / 0.22);
  cursor: zoom-in;
}

.gallery-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 4;
}

.gallery-card:nth-child(2) {
  grid-column: 1;
  grid-row: 4 / 6;
}

.gallery-card:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / 4;
}

.gallery-card:nth-child(4) {
  grid-column: 2;
  grid-row: 4 / 6;
}

.gallery-card:nth-child(5) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-card:nth-child(6) {
  grid-column: 3;
  grid-row: 3 / 6;
}

.gallery-card:nth-child(7) {
  grid-column: 4;
  grid-row: 1 / 4;
}

.gallery-card:nth-child(8) {
  grid-column: 4;
  grid-row: 4 / 6;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(0 0% 0% / 0.45), transparent 38%);
  content: "";
  opacity: 0;
  transition: opacity 320ms var(--ease);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms var(--ease),
    filter 450ms var(--ease);
}

.gallery-card:nth-child(1) img {
  object-position: 50% 55%;
}

.gallery-card:nth-child(2) img {
  object-position: 50% 34%;
}

.gallery-card:nth-child(3) img {
  object-position: 50% 50%;
}

.gallery-card:nth-child(4) img,
.gallery-card:nth-child(8) img {
  object-position: 50% 48%;
}

.gallery-card:nth-child(5) img {
  object-position: 50% 22%;
}

.gallery-card__hint {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(8px);
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.gallery-card__hint::before {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after,
.gallery-card:hover .gallery-card__hint,
.gallery-card:focus-visible .gallery-card__hint {
  opacity: 1;
}

.gallery-card:hover .gallery-card__hint,
.gallery-card:focus-visible .gallery-card__hint {
  transform: translateY(0);
}

.gallery-card:focus-visible {
  outline: 2px solid var(--gallery-gold);
  outline-offset: 4px;
}

.gallery-mobile-progress {
  display: none;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: fit-content;
  min-height: 54px;
  margin: clamp(38px, 4vw, 58px) auto 0;
  padding: 0 25px;
  border: 1px solid hsl(33 38% 48% / 0.35);
  border-radius: 999px;
  color: var(--gallery-ink);
  font-size: 13px;
  font-weight: 650;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.gallery-cta span {
  color: var(--gallery-gold);
  font-size: 19px;
  transition: transform 220ms var(--ease);
}

.gallery-cta:hover,
.gallery-cta:focus-visible {
  border-color: var(--gallery-gold);
  color: var(--paper);
  background: var(--gallery-gold);
}

.gallery-cta:hover span,
.gallery-cta:focus-visible span {
  color: currentColor;
  transform: translateX(4px);
}

.gallery-lightbox {
  width: min(1180px, calc(100% - 48px));
  max-width: none;
  height: min(88dvh, 860px);
  padding: 0;
  overflow: visible;
  border: 0;
  color: hsl(39 40% 96%);
  background: transparent;
}

.gallery-lightbox::backdrop {
  background: hsl(24 20% 5% / 0.92);
  backdrop-filter: blur(12px);
}

.gallery-lightbox[open] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  animation: dialog-in 320ms var(--ease) both;
}

.gallery-lightbox figure {
  display: flex;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100% - 42px);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 32px 90px hsl(0 0% 0% / 0.52);
}

.gallery-lightbox figcaption {
  min-height: 42px;
  padding-top: 14px;
  color: hsl(35 18% 78%);
  font-size: 13px;
  text-align: center;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  display: grid;
  border: 1px solid hsl(38 22% 70% / 0.26);
  border-radius: 50%;
  color: hsl(39 40% 96%);
  background: hsl(27 16% 12% / 0.62);
  backdrop-filter: blur(12px);
  cursor: pointer;
  place-items: center;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:focus-visible {
  border-color: var(--gold-light);
  color: hsl(27 18% 8%);
  background: var(--gold-light);
  transform: scale(1.06);
}

.gallery-lightbox__close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 27px;
}

.gallery-lightbox__nav {
  position: fixed;
  top: calc(50% - 26px);
  z-index: 1;
  width: 52px;
  height: 52px;
  box-shadow: 0 14px 34px hsl(0 0% 0% / 0.22);
}

.gallery-lightbox__nav svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-lightbox__nav--prev {
  left: 18px;
}

.gallery-lightbox__nav--next {
  right: 18px;
}

@media (max-width: 760px) {
  .gallery-section {
    padding: clamp(58px, 15vw, 76px) 0 clamp(52px, 14vw, 70px);
  }

  .gallery-heading {
    margin-bottom: clamp(28px, 8vw, 38px);
    padding: 0 clamp(18px, 6vw, 28px);
  }

  .gallery-kicker {
    margin-bottom: 15px;
    font-size: 10px;
  }

  .gallery-heading h2 {
    font-size: clamp(39px, 11.5vw, 55px);
  }

  .gallery-heading > p:last-child {
    margin-top: 18px;
    font-size: clamp(12px, 3.45vw, 15px);
    line-height: 1.65;
  }

  .gallery-track {
    display: flex;
    gap: 12px;
    padding: 0 clamp(18px, 5vw, 24px) 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: clamp(18px, 5vw, 24px);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-track::-webkit-scrollbar {
    display: none;
  }

  .gallery-card,
  .gallery-card:nth-child(n) {
    width: min(78vw, 390px);
    height: min(108vw, 520px);
    border-radius: 18px;
    flex: 0 0 min(78vw, 390px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .gallery-card::after {
    opacity: 0.55;
  }

  .gallery-card__hint {
    display: none;
  }

  .gallery-card:nth-child(n) img {
    object-position: center;
  }

  .gallery-card:nth-child(1) img {
    object-position: 50% 56%;
  }

  .gallery-card:nth-child(2) img {
    object-position: 50% 28%;
  }

  .gallery-card:nth-child(5) img {
    object-position: 50% 22%;
  }

  .gallery-mobile-progress {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
  }

  .gallery-mobile-progress span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: hsl(38 25% 66% / 0.34);
    transition:
      width 260ms var(--ease),
      background 260ms ease;
  }

  .gallery-mobile-progress span.is-active {
    width: 22px;
    border-radius: 999px;
    background: var(--gallery-gold);
  }

  .gallery-cta {
    min-height: 50px;
    margin-top: 27px;
    font-size: 12px;
  }

  .gallery-lightbox {
    width: calc(100% - 22px);
    height: 82dvh;
  }

  .gallery-lightbox[open] {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-lightbox figure img {
    border-radius: 13px;
  }

  .gallery-lightbox__nav {
    top: calc(50% - 21px);
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox__nav--prev {
    left: 8px;
  }

  .gallery-lightbox__nav--next {
    right: 8px;
  }

  .gallery-lightbox__nav svg {
    width: 20px;
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
}

/* Kaynak: shoots.css */

/* Cinematic vertical shoots */
.shoots-section {
  --shoots-ink: hsl(28 16% 13%);
  --shoots-muted: hsl(28 8% 42%);
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 126px) clamp(24px, 5vw, 80px);
  color: var(--shoots-ink);
  background:
    radial-gradient(circle at 14% 16%, hsl(35 68% 91% / 0.72), transparent 28%),
    linear-gradient(132deg, hsl(38 38% 98%), hsl(34 32% 94%));
}

.shoots-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(86%, 1280px);
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(34 35% 70% / 0.62), transparent);
  content: "";
  transform: translateX(-50%);
}

.shoots-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 2fr);
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  width: min(1260px, 100%);
  margin: 0 auto;
}

.shoots-heading {
  align-self: center;
  max-width: 360px;
}

.shoots-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.shoots-kicker::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.shoots-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.2vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.shoots-heading h2 em {
  color: var(--gold-dark);
  font-style: normal;
}

.shoots-heading > p:not(.shoots-kicker) {
  margin: 25px 0 0;
  color: var(--shoots-muted);
  font-size: 14px;
  line-height: 1.78;
}

.shoots-heading__mark {
  display: inline-block;
  margin-top: clamp(34px, 4vw, 60px);
  color: hsl(32 28% 48%);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.32em;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}

.shoots-gallery {
  position: relative;
  min-width: 0;
}

.shoots-grid {
  display: grid;
  grid-auto-columns: clamp(214px, 22vw, 284px);
  grid-auto-flow: column;
  gap: clamp(14px, 1.8vw, 24px);
  overflow-x: auto;
  padding: 9px 4px 25px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: hsl(33 35% 56% / 0.7) transparent;
  scrollbar-width: thin;
}

.shoots-grid::-webkit-scrollbar {
  height: 5px;
}

.shoots-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: hsl(33 35% 56% / 0.7);
}

.shoots-gallery__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: 0 0 10px;
}

.shoots-gallery__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid hsl(34 34% 73%);
  border-radius: 50%;
  color: var(--shoots-ink);
  background: hsl(40 45% 98% / 0.64);
  cursor: pointer;
  font-size: 18px;
  place-items: center;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease);
}

.shoots-gallery__arrow:hover,
.shoots-gallery__arrow:focus-visible {
  color: hsl(40 45% 98%);
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.shoots-gallery__arrow:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.shoot-card {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.shoot-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid hsl(36 34% 82%);
  border-radius: clamp(18px, 1.5vw, 24px);
  background: hsl(27 16% 11%);
  box-shadow: 0 28px 70px hsl(28 25% 22% / 0.2);
  cursor: pointer;
  isolation: isolate;
}

.shoot-card__media--talia {
  --shoot-poster: url("../../assets/images/venues/talia-garden.webp");
}

.shoot-card__media--bella {
  --shoot-poster: url("../../assets/images/venues/bella-garden.webp");
}

.shoot-card__media--rena {
  --shoot-poster: url("../../assets/images/venues/rena-garden.webp");
}

.shoot-card__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--shoot-poster) center / cover no-repeat;
  content: "";
  pointer-events: none;
  transition: opacity 320ms ease;
}

.shoot-card__media.is-video-ready::before {
  opacity: 0;
}

.shoot-card__media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, hsl(28 24% 7% / 0.46), transparent 34%),
    linear-gradient(to bottom, hsl(28 20% 6% / 0.18), transparent 24%);
  content: "";
  pointer-events: none;
  transition: opacity 320ms ease;
}

.shoot-card video {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 800ms var(--ease);
}

.shoot-card:hover video {
  transform: scale(1.025);
}

.shoot-card__media:hover::after {
  opacity: 0.25;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  margin: 0;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: hsl(39 40% 96%);
}

.video-lightbox::backdrop {
  background: hsl(24 20% 5% / 0.92);
  backdrop-filter: blur(12px);
}

.video-lightbox[open] {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dialog-in 320ms var(--ease) both;
}

.video-lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: min(1000px, 100%);
  max-height: 100%;
  margin: 0;
  gap: 14px;
  min-height: 0;
}

.video-lightbox video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 120px);
  border-radius: 20px;
  background: hsl(27 16% 8%);
  box-shadow: 0 32px 90px hsl(0 0% 0% / 0.65);
  object-fit: contain;
  min-height: 0;
}

.video-lightbox figcaption {
  padding: 0;
  color: hsl(35 18% 78%);
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
}

.video-lightbox__close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid hsl(38 22% 70% / 0.35);
  border-radius: 50%;
  color: hsl(39 40% 96%);
  background: hsl(27 16% 12% / 0.82);
  cursor: pointer;
  font-size: 27px;
  place-items: center;
}

.video-lightbox__close:hover,
.video-lightbox__close:focus-visible {
  border-color: var(--gold-light);
  color: hsl(27 18% 8%);
  background: var(--gold-light);
}

.shoot-card__sound {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid hsl(40 45% 96% / 0.62);
  border-radius: 50%;
  color: hsl(38 42% 98%);
  background: hsl(28 18% 8% / 0.34);
  backdrop-filter: blur(8px);
  cursor: pointer;
  place-items: center;
  transition:
    background 220ms ease,
    transform 220ms var(--ease);
}

.shoot-card__sound svg {
  width: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shoot-card__waves,
.shoot-card__slash {
  fill: none;
}

.shoot-card__sound:not(.is-muted) .shoot-card__slash,
.shoot-card__sound.is-muted .shoot-card__waves {
  display: none;
}

.shoot-card__sound:hover,
.shoot-card__sound:focus-visible {
  background: hsl(33 54% 48% / 0.78);
  transform: scale(1.07);
}

.shoot-card__sound:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.shoot-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  color: hsl(38 42% 98% / 0.86);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.shoot-card__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 3px 0;
}

.shoot-card__caption h3,
.shoot-card__caption p {
  margin: 0;
}

.shoot-card__caption h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.shoot-card__caption p {
  color: var(--shoots-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .shoots-section__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shoots-heading {
    grid-column: 1 / -1;
    max-width: 620px;
    text-align: center;
    justify-self: center;
  }

  .shoots-kicker {
    justify-content: center;
  }

  .shoots-kicker::after {
    width: 32px;
    height: 1px;
    background: currentColor;
    content: "";
  }

  .shoots-heading__mark {
    display: none;
  }

  .shoots-gallery {
    grid-column: 1 / -1;
  }

  .shoots-grid {
    grid-auto-columns: clamp(220px, 35vw, 290px);
  }
}

@media (max-width: 560px) {
  .shoots-section {
    padding: 62px clamp(12px, 3.8vw, 18px) 72px;
  }

  .shoots-section__inner {
    gap: 30px;
  }

  .shoots-heading {
    padding: 0 10px;
  }

  .shoots-kicker {
    margin-bottom: 15px;
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .shoots-heading h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .shoots-heading > p:not(.shoots-kicker) {
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.65;
  }

  .shoots-grid {
    grid-auto-columns: minmax(210px, 78vw);
    gap: 12px;
    padding-bottom: 18px;
  }

  .shoots-gallery__controls {
    display: none;
  }

  .shoot-card__media {
    border-radius: 14px;
    box-shadow: 0 16px 34px hsl(28 25% 22% / 0.17);
  }

  .shoot-card__sound {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .shoot-card__index {
    top: 11px;
    left: 10px;
    font-size: 10px;
  }

  .shoot-card__caption {
    display: block;
    padding: 11px 2px 0;
  }

  .shoot-card__caption h3 {
    font-size: clamp(20px, 6vw, 27px);
  }

  .shoot-card__caption p {
    margin-top: 5px;
    font-size: 8px;
    line-height: 1.45;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shoot-card,
  .shoot-card video,
  .shoot-card__sound {
    transition: none;
  }
}

/* Kaynak: services.css */

.services-section {
  --services-accent: hsl(31 55% 46%);
  --services-border: hsl(33 36% 88%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 7vw, 116px) clamp(24px, 3.8vw, 70px) clamp(84px, 8vw, 132px);
  background:
    radial-gradient(circle at 50% 11%, hsl(34 58% 92% / 0.52), transparent 28%),
    linear-gradient(145deg, hsl(42 36% 99%), hsl(35 35% 97%));
}

.services-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(hsl(31 31% 68% / 0.13) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.services-section__inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.services-heading {
  max-width: 920px;
  margin: 0 auto clamp(44px, 5vw, 72px);
  text-align: center;
}

.services-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.services-heading h2 em {
  color: var(--services-accent);
  font-style: normal;
}

.services-heading > p {
  max-width: 740px;
  margin: 26px auto 0;
  color: hsl(27 7% 30%);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.75;
}

.services-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(380px, 54%);
  margin: 32px auto 0;
  color: var(--services-accent);
}

.services-divider span {
  height: 1px;
  background: currentColor;
  opacity: 0.34;
  flex: 1;
}

.services-divider b {
  font-size: 18px;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.45vw, 28px);
}

.service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--services-border);
  border-radius: 24px;
  background: hsl(42 33% 99% / 0.92);
  box-shadow: 0 20px 40px hsl(30 17% 35% / 0.09);
  transition:
    transform 360ms var(--ease),
    box-shadow 360ms var(--ease);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 52px hsl(30 17% 35% / 0.15);
}

.service-card__media {
  position: relative;
  height: clamp(225px, 21vw, 330px);
  margin: 0;
  overflow: hidden;
  background: hsl(35 24% 91%);
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card:nth-child(1) .service-card__media img {
  object-position: 50% 48%;
}

.service-card:nth-child(2) .service-card__media img {
  object-position: 50% 38%;
}

.service-card:nth-child(3) .service-card__media img {
  object-position: 50% 18%;
}

.service-card:nth-child(4) .service-card__media img {
  object-position: 50% 58%;
}

.service-card:nth-child(5) .service-card__media img {
  object-position: 50% 46%;
}

.service-card:nth-child(6) .service-card__media img {
  object-position: 50% 50%;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__body {
  position: relative;
  display: flex;
  min-height: 252px;
  padding: 46px clamp(22px, 2.1vw, 34px) 28px;
  flex-direction: column;
}

.service-card__icon {
  position: absolute;
  top: 0;
  left: clamp(22px, 2.1vw, 34px);
  display: grid;
  width: 70px;
  height: 70px;
  border: 1px solid hsl(33 35% 88%);
  border-radius: 50%;
  color: var(--services-accent);
  background: hsl(42 36% 99%);
  box-shadow: 0 10px 22px hsl(30 14% 36% / 0.14);
  place-items: center;
  transform: translateY(-50%);
}

.service-card__icon svg {
  width: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-card p {
  margin: 0 0 24px;
  color: hsl(28 7% 32%);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.62;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  margin: auto 0 0;
  padding: 8px 0;
  border: 0;
  color: var(--services-accent);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.service-card__link span {
  font-size: 23px;
  font-weight: 300;
  letter-spacing: 0;
  transition: transform 220ms var(--ease);
}

.service-card__link:hover span,
.service-card__link:focus-visible span {
  transform: translateX(5px);
}

.service-card__link:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--services-accent);
  outline-offset: 5px;
}

@media (max-width: 1060px) {
  .services-section {
    padding-inline: clamp(18px, 4vw, 42px);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card__media {
    height: clamp(240px, 39vw, 380px);
  }
}

@media (max-width: 640px) {
  .services-section {
    padding: clamp(58px, 15vw, 84px) clamp(10px, 3vw, 18px) clamp(66px, 16vw, 92px);
  }

  .services-heading {
    margin-bottom: clamp(30px, 9vw, 48px);
  }

  .services-heading h2 {
    max-width: 580px;
    margin-inline: auto;
    font-size: clamp(39px, 11.8vw, 62px);
    line-height: 1.02;
  }

  .services-heading h2 em {
    display: block;
    margin-top: 4px;
  }

  .services-heading > p {
    max-width: 610px;
    margin-top: 20px;
    padding-inline: 12px;
    font-size: clamp(12px, 3.5vw, 17px);
    line-height: 1.7;
  }

  .services-divider {
    width: min(270px, 64%);
    margin-top: 24px;
  }

  .services-grid {
    gap: clamp(9px, 2.6vw, 16px);
  }

  .service-card {
    border-radius: clamp(16px, 4vw, 22px);
  }

  .service-card__media {
    height: clamp(155px, 44vw, 280px);
  }

  .service-card__body {
    min-height: clamp(220px, 54vw, 285px);
    padding: clamp(32px, 9vw, 48px) clamp(14px, 4vw, 25px) clamp(18px, 5vw, 28px);
  }

  .service-card__icon {
    left: clamp(14px, 4vw, 25px);
    width: clamp(52px, 14vw, 68px);
    height: clamp(52px, 14vw, 68px);
  }

  .service-card__icon svg {
    width: clamp(24px, 7vw, 32px);
  }

  .service-card h3 {
    margin-bottom: 10px;
    font-size: clamp(20px, 6vw, 30px);
  }

  .service-card p {
    margin-bottom: 17px;
    font-size: clamp(10.5px, 3.1vw, 14px);
    line-height: 1.58;
  }

  .service-card__link {
    gap: 9px;
    padding-block: 5px;
    font-size: clamp(10px, 2.7vw, 12px);
    letter-spacing: 0.16em;
  }

  .service-card__link span {
    font-size: 19px;
  }
}

@media (max-width: 380px) {
  .services-grid {
    gap: 7px;
  }

  .service-card__body {
    min-height: 216px;
    padding-inline: 11px;
  }

  .service-card__icon {
    left: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Service Detail Modal */
body:has(.service-detail[open]) {
  overflow: hidden;
}

.service-detail {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(1080px, calc(100% - 40px));
  max-width: none;
  max-height: min(820px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid hsl(34 24% 77%);
  color: var(--ink, hsl(27 20% 12%));
  background: var(--surface, hsl(42 34% 99%));
  box-shadow: 0 40px 100px hsl(27 20% 12% / 0.28);
  z-index: 1000;
}

.service-detail[open] {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  animation: detail-in 360ms ease both;
}

.service-detail::backdrop {
  background: hsl(29 12% 10% / 0.68);
  backdrop-filter: blur(5px);
}

@keyframes detail-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-detail__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid hsl(0 0% 100% / 0.65);
  border-radius: 50%;
  color: white;
  background: hsl(27 18% 15% / 0.38);
  backdrop-filter: blur(8px);
  cursor: pointer;
  place-items: center;
}

.service-detail__close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.service-detail__media {
  display: grid;
  min-height: 680px;
  padding: 16px;
  background: hsl(38 32% 96%);
  grid-template-rows: 1fr 92px;
}

.service-detail__hero {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.service-detail__hero::after {
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, hsl(27 18% 12% / 0.35));
  content: "";
}

.service-detail__hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__number {
  position: absolute;
  right: 21px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-family: var(--serif);
  font-size: 19px;
}

.service-detail__thumbs {
  display: grid;
  padding-top: 12px;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.service-detail__thumbs button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.service-detail__thumbs button.is-active {
  border-color: var(--services-accent, hsl(31 55% 46%));
}

.service-detail__thumbs img {
  display: block;
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.service-detail__eyebrow {
  margin: 0 0 8px;
  color: var(--services-accent, hsl(31 55% 46%));
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.service-detail__content {
  display: flex;
  justify-content: center;
  padding: clamp(48px, 5vw, 76px);
  flex-direction: column;
}

.service-detail__content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.service-detail__description {
  margin: 20px 0 0;
  color: hsl(27 7% 32%);
  font-size: 13px;
  line-height: 1.75;
}

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

.service-detail__features li {
  position: relative;
  padding-left: 23px;
  font-size: 11px;
}

.service-detail__features li::before {
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--services-accent, hsl(31 55% 46%));
  content: "✓";
  font-size: 13px;
}

.service-detail__delivery {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid hsl(33 36% 88%);
  border-bottom: 1px solid hsl(33 36% 88%);
  font-size: 10px;
}

.service-detail__delivery span {
  color: hsl(27 7% 42%);
}

.service-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 18px;
}

.service-detail__footer > strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  white-space: nowrap;
}

.service-detail__footer .builder-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  min-height: 54px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--services-accent, hsl(31 55% 46%));
  border-radius: 4px;
  color: white;
  background: var(--services-accent, hsl(31 55% 46%));
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-detail__footer .builder-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-detail__footer .builder-primary:hover,
.service-detail__footer .builder-primary:focus-visible {
  box-shadow: 0 12px 24px hsl(31 50% 34% / 0.22);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .service-detail {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
  }

  .service-detail[open] {
    display: block;
    overflow-y: auto;
  }

  .service-detail__media {
    min-height: 0;
    padding: 0 12px;
    background: var(--surface, hsl(42 34% 99%));
    grid-template-rows: min(122vw, 530px) 84px;
  }

  .service-detail__close {
    position: fixed;
    top: 13px;
    right: 13px;
  }

  .service-detail__thumbs {
    gap: 7px;
  }

  .service-detail__thumbs img {
    height: 70px;
  }

  .service-detail__content {
    padding: 38px 20px 28px;
  }

  .service-detail__content h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .service-detail__description {
    font-size: 12px;
  }

  .service-detail__footer {
    position: sticky;
    bottom: 0;
    margin: 24px -20px -28px;
    padding: 12px 20px;
    background: hsl(42 34% 99% / 0.95);
    backdrop-filter: blur(14px);
  }

  .service-detail__footer > strong {
    font-size: 25px;
  }

  .service-detail__footer .builder-primary {
    width: min(200px, 60%);
  }
}

/* Kaynak: venues.css */

/* Calisilan mekanlar */
.venues-section {
  --venues-surface: hsl(37 42% 97%);
  --venues-ink: hsl(29 16% 17%);
  --venues-muted: hsl(29 9% 40%);
  --venues-accent: hsl(33 48% 45%);
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 144px) clamp(24px, 5vw, 84px);
  color: var(--venues-ink);
  background:
    radial-gradient(circle at 8% 48%, hsl(37 65% 88% / 0.42), transparent 23%),
    radial-gradient(circle at 93% 13%, hsl(33 56% 82% / 0.26), transparent 22%),
    var(--venues-surface);
}

.venues-section::before,
.venues-section::after {
  position: absolute;
  border: 1px solid hsl(33 48% 52% / 0.15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.venues-section::before {
  top: -190px;
  right: -135px;
  width: 440px;
  height: 440px;
}

.venues-section::after {
  bottom: -275px;
  left: -215px;
  width: 530px;
  height: 530px;
}

.venues-section__inner {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.venues-heading {
  max-width: 720px;
  margin: 0 auto clamp(46px, 5vw, 72px);
  text-align: center;
}

.venues-heading__eyebrow {
  margin: 0;
  color: var(--venues-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.venues-heading__rule {
  display: grid;
  width: min(210px, 58%);
  margin: 18px auto 25px;
  color: var(--venues-accent);
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.venues-heading__rule::before,
.venues-heading__rule::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(33 48% 47% / 0.55));
  content: "";
}

.venues-heading__rule::after {
  background: linear-gradient(90deg, hsl(33 48% 47% / 0.55), transparent);
}

.venues-heading__rule span {
  font-size: 15px;
}

.venues-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.venues-heading h2 em {
  display: block;
  margin-top: 14px;
  color: var(--venues-accent);
  font-family: var(--serif);
  font-size: 0.5em;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.venues-heading > p:last-child {
  max-width: 620px;
  margin: 25px auto 0;
  color: var(--venues-muted);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.72;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 24px);
}

.venue-card {
  position: relative;
  display: flex;
  min-height: clamp(218px, 20vw, 286px);
  padding: clamp(26px, 3vw, 42px);
  isolation: isolate;
  overflow: hidden;
  border: 1px solid hsl(35 33% 81%);
  border-radius: 3px;
  color: var(--venues-ink);
  background: hsl(42 45% 99% / 0.74);
  box-shadow: 0 16px 35px hsl(30 24% 28% / 0.055);
  flex-direction: column;
  justify-content: space-between;
  transition:
    border-color 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.venue-card::before {
  position: absolute;
  top: -56px;
  right: -52px;
  z-index: -1;
  width: 156px;
  height: 156px;
  border: 1px solid hsl(33 48% 47% / 0.16);
  border-radius: 50%;
  content: "";
  transition: transform 500ms var(--ease);
}

.venue-card:nth-child(2),
.venue-card:nth-child(5) {
  background: hsl(37 41% 95% / 0.88);
}

.venue-card:nth-child(2)::before,
.venue-card:nth-child(5)::before {
  top: auto;
  right: auto;
  bottom: -73px;
  left: -65px;
}

.venue-card:hover,
.venue-card:focus-visible {
  border-color: hsl(33 49% 54% / 0.8);
  box-shadow: 0 22px 42px hsl(30 24% 28% / 0.12);
  outline: none;
  transform: translateY(-5px);
}

.venue-card:hover::before,
.venue-card:focus-visible::before {
  transform: scale(1.22);
}

.venue-card__emblem {
  display: grid;
  width: clamp(80px, 7vw, 100px);
  height: clamp(80px, 7vw, 100px);
  padding: 15px;
  border: 1px solid hsl(34 43% 79% / 0.78);
  border-radius: 50%;
  background: hsl(0 0% 100% / 0.72);
  box-shadow: 0 9px 18px hsl(30 20% 30% / 0.07);
  place-items: center;
}

.venue-card__emblem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.76) contrast(0.94);
  transition:
    filter 260ms var(--ease),
    transform 260ms var(--ease);
}

.venue-card__monogram {
  color: var(--venues-accent);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.04em;
}

.venue-card:hover .venue-card__emblem img,
.venue-card:focus-visible .venue-card__emblem img {
  filter: saturate(1) contrast(1);
  transform: scale(1.05);
}

.venue-card__name {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.35vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.venue-card__link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  color: var(--venues-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.venue-card__link b {
  font-size: 18px;
  font-weight: 400;
  line-height: 0.8;
  transition: transform 220ms var(--ease);
}

.venue-card:hover .venue-card__link b,
.venue-card:focus-visible .venue-card__link b {
  transform: translateX(4px);
}

@media (max-width: 780px) {
  .venues-section {
    padding-inline: clamp(14px, 4vw, 28px);
  }

  .venues-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .venue-card {
    min-height: clamp(196px, 42vw, 245px);
  }
}

@media (max-width: 520px) {
  .venues-section {
    padding-block: clamp(68px, 17vw, 90px);
  }

  .venues-heading {
    margin-bottom: 34px;
  }

  .venues-heading h2 {
    font-size: clamp(40px, 11.4vw, 54px);
  }

  .venues-heading > p:last-child {
    margin-top: 19px;
    font-size: 13px;
  }

  .venues-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .venue-card {
    min-height: 176px;
    padding: 24px;
  }

  .venue-card__emblem {
    width: 68px;
    height: 68px;
    padding: 12px;
  }

  .venue-card__name {
    margin-top: 19px;
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .venue-card,
  .venue-card::before,
  .venue-card__emblem img,
  .venue-card__link b {
    transition: none;
  }
}

/* Kaynak: faq.css */

/* Frequently asked questions */
.faq-section {
  --faq-gold: hsl(32 57% 45%);
  --faq-gold-soft: hsl(35 58% 70%);
  --faq-line: hsl(34 43% 84%);
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 8vw, 132px) clamp(24px, 6vw, 108px) clamp(60px, 6vw, 92px);
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 38%, hsl(40 60% 100% / 0.95), transparent 40%),
    radial-gradient(circle at 6% 78%, hsl(33 53% 91% / 0.4), transparent 26%),
    linear-gradient(135deg, hsl(42 52% 99%), hsl(35 36% 97%));
}

.faq-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(hsl(30 31% 47% / 0.075) 0.6px, transparent 0.7px),
    linear-gradient(115deg, transparent 0 46%, hsl(38 45% 98% / 0.7) 51%, transparent 56%);
  background-size:
    6px 6px,
    100% 100%;
  content: "";
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.faq-heading {
  margin-bottom: clamp(28px, 3vw, 42px);
  text-align: center;
}

.faq-heading__eyebrow {
  margin: 0;
  color: var(--faq-gold);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.faq-heading__rule,
.faq-actions__rule {
  display: flex;
  align-items: center;
  gap: 15px;
  width: min(210px, 48vw);
  margin: 15px auto 20px;
  color: var(--faq-gold);
}

.faq-heading__rule::before,
.faq-heading__rule::after,
.faq-actions__rule::before,
.faq-actions__rule::after {
  width: 50%;
  height: 1px;
  background: var(--faq-line);
  content: "";
}

.faq-heading__rule span {
  font-size: 21px;
  line-height: 1;
  transform: rotate(180deg);
}

.faq-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.faq-heading h2 em {
  color: var(--faq-gold);
  font-style: normal;
}

.faq-heading > p:last-child {
  margin: 22px 0 0;
  color: hsl(30 7% 32%);
  font-size: clamp(14px, 1.25vw, 18px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  background: hsl(40 45% 100% / 0.82);
  box-shadow: 0 11px 30px hsl(31 22% 42% / 0.075);
  transition:
    border-color 240ms var(--ease),
    background-color 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.faq-item.is-open {
  border-color: hsl(33 55% 68%);
  background: linear-gradient(110deg, hsl(39 64% 98%), hsl(35 52% 96% / 0.9));
  box-shadow: 0 15px 34px hsl(31 27% 42% / 0.09);
}

.faq-item h3 {
  margin: 0;
  font: inherit;
}

.faq-question {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 76px;
  padding: 9px 25px 9px 18px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-question > span:nth-child(2) {
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.28;
}

.faq-question:focus-visible {
  outline: 2px solid var(--faq-gold);
  outline-offset: -4px;
}

.faq-item__icon {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--faq-gold);
  background: hsl(37 52% 96% / 0.9);
  place-items: center;
}

.faq-item__icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1.4px solid var(--faq-gold);
  border-radius: 50%;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--faq-gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 240ms var(--ease);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  position: relative;
  margin: -3px 82px 0 106px;
  padding: 0 90px 28px 0;
  color: hsl(30 7% 31%);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.62;
}

.faq-answer__branch {
  position: absolute;
  right: -28px;
  bottom: -8px;
  width: 135px;
  fill: none;
  stroke: hsl(34 57% 65% / 0.65);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-actions {
  margin-top: 16px;
}

.faq-actions__rule {
  margin-block: 20px 18px;
}

.faq-actions__rule span {
  font-size: 15px;
}

.faq-actions__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(610px, 100%);
  margin: 0 auto;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font: 600 16px/1 var(--sans);
  text-decoration: none;
  transition:
    color 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

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

.faq-cta:focus-visible {
  outline: 3px solid hsl(32 57% 32%);
  outline-offset: 4px;
}

.faq-cta--primary {
  border: 1px solid hsl(35 61% 69%);
  color: white;
  background: linear-gradient(120deg, hsl(33 55% 51%), hsl(31 50% 43%));
  box-shadow:
    0 10px 22px hsl(31 50% 36% / 0.2),
    inset 0 0 0 2px hsl(0 0% 100% / 0.22);
}

.faq-cta--outline {
  border: 1.5px solid var(--faq-gold);
  color: var(--faq-gold);
  background: hsl(40 50% 99% / 0.55);
}

.faq-cta--outline:hover {
  color: white;
  background: var(--faq-gold);
}

.faq-botanical {
  position: absolute;
  z-index: 0;
  width: clamp(130px, 18vw, 275px);
  fill: hsl(35 51% 84% / 0.14);
  stroke: hsl(34 54% 65% / 0.38);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.faq-botanical--left {
  top: -30px;
  left: -28px;
}

.faq-botanical--right {
  right: -30px;
  bottom: -72px;
  transform: rotate(180deg);
}

@media (max-width: 760px) {
  .faq-section {
    padding: clamp(72px, 18vw, 96px) clamp(16px, 5vw, 30px) clamp(44px, 12vw, 64px);
  }

  .faq-section__inner {
    width: 100%;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading__eyebrow {
    font-size: clamp(10px, 2.8vw, 12px);
    letter-spacing: 0.36em;
  }

  .faq-heading__rule {
    margin-block: 13px 22px;
  }

  .faq-heading h2 {
    font-size: clamp(46px, 13.5vw, 70px);
    line-height: 0.98;
  }

  .faq-heading > p:last-child {
    max-width: 590px;
    margin: 23px auto 0;
    font-size: clamp(13px, 3.8vw, 17px);
    line-height: 1.55;
  }

  .faq-list {
    gap: 9px;
  }

  .faq-item {
    border-radius: 15px;
  }

  .faq-question {
    grid-template-columns: clamp(50px, 14vw, 64px) minmax(0, 1fr) 38px;
    gap: clamp(11px, 3.2vw, 18px);
    min-height: clamp(82px, 22vw, 112px);
    padding: 12px clamp(14px, 3.6vw, 22px) 12px clamp(12px, 3vw, 18px);
  }

  .faq-question > span:nth-child(2) {
    font-size: clamp(18px, 5.2vw, 27px);
    line-height: 1.23;
  }

  .faq-item__icon {
    width: clamp(48px, 13.5vw, 62px);
    height: clamp(48px, 13.5vw, 62px);
  }

  .faq-item__icon svg {
    width: 54%;
  }

  .faq-toggle {
    width: clamp(34px, 10vw, 42px);
    height: clamp(34px, 10vw, 42px);
  }

  .faq-item.is-open .faq-question {
    align-items: start;
    padding-top: 24px;
  }

  .faq-item.is-open .faq-toggle {
    margin-top: 5px;
  }

  .faq-answer {
    margin: -18px 20px 0 clamp(74px, 20.5vw, 100px);
    padding: 0 28px 24px 0;
  }

  .faq-answer p {
    font-size: clamp(13px, 3.8vw, 17px);
    line-height: 1.62;
  }

  .faq-answer__branch {
    right: -26px;
    width: 100px;
  }

  .faq-actions__buttons {
    gap: clamp(10px, 3vw, 18px);
  }

  .faq-cta {
    min-height: clamp(52px, 14vw, 64px);
    padding-inline: clamp(13px, 3.6vw, 22px);
    font-size: clamp(14px, 4vw, 18px);
  }

  .faq-botanical {
    width: 170px;
    opacity: 0.75;
  }

  .faq-botanical--left {
    top: 50px;
    left: auto;
    right: -76px;
  }

  .faq-botanical--right {
    right: auto;
    bottom: -66px;
    left: -88px;
  }
}

@media (max-width: 430px) {
  .faq-section {
    padding-inline: 10px;
  }

  .faq-heading {
    padding-inline: 10px;
  }

  .faq-question {
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    gap: 10px;
    padding-inline: 11px;
  }

  .faq-question > span:nth-child(2) {
    font-size: clamp(16px, 5vw, 21px);
  }

  .faq-item__icon {
    width: 46px;
    height: 46px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-answer {
    margin-left: 69px;
    padding-right: 12px;
  }

  .faq-actions__buttons {
    gap: 8px;
  }

  .faq-cta {
    gap: 9px;
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-toggle::after,
  .faq-cta {
    transition: none;
  }
}

/* Kaynak: footer.css */

/* Site footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: hsl(39 30% 94%);
  background: linear-gradient(
    112deg,
    hsl(28 16% 12%) 0%,
    hsl(30 18% 16%) 54%,
    hsl(31 20% 13%) 100%
  );
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(hsl(37 44% 70% / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, hsl(37 44% 70% / 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.site-footer__glow {
  position: absolute;
  top: -190px;
  right: -100px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid hsl(37 61% 68% / 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px hsl(37 61% 68% / 0.035),
    0 0 0 140px hsl(37 61% 68% / 0.02);
}

.site-footer__inner {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  padding: clamp(64px, 7vw, 104px) 0 26px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(300px, 0.95fr) minmax(260px, 0.85fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.footer-brand__mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.footer-brand small {
  margin-top: 5px;
  color: hsl(37 28% 74%);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__brand > p {
  max-width: 440px;
  margin: 27px 0 0;
  color: hsl(35 15% 73%);
  font-size: 14px;
  line-height: 1.85;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 36px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links__title,
.site-footer__eyebrow {
  margin: 0 0 7px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a {
  position: relative;
  padding: 0;
  border: 0;
  color: hsl(38 20% 84%);
  background: transparent;
  font-size: 13px;
  line-height: 1.45;
  cursor: pointer;
  transition:
    color 200ms ease,
    transform 200ms var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-links a:focus-visible,
.site-footer__action:focus-visible,
.site-footer__bottom a:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.site-footer__cta {
  padding: 2px 0 4px clamp(24px, 3vw, 48px);
  border-left: 1px solid hsl(36 38% 70% / 0.2);
}

.site-footer__cta > p {
  max-width: 330px;
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.site-footer__action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: min(100%, 270px);
  padding: 15px 18px;
  border: 1px solid hsl(37 50% 70% / 0.52);
  color: hsl(38 38% 93%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.site-footer__action span:last-child {
  color: var(--gold-light);
  font-size: 18px;
  transition: transform 220ms var(--ease);
}

.site-footer__action:hover {
  border-color: var(--gold-light);
  color: var(--ink);
  background: var(--gold-light);
}

.site-footer__action:hover span:last-child {
  color: var(--ink);
  transform: translate(2px, -2px);
}

.site-footer__signature {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: clamp(48px, 6vw, 78px) 0 20px;
}

.site-footer__signature span {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(37 40% 70% / 0.24));
}

.site-footer__signature span:last-child {
  background: linear-gradient(90deg, hsl(37 40% 70% / 0.24), transparent);
}

.site-footer__signature svg {
  width: 20px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: hsl(35 13% 62%);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: hsl(38 22% 79%);
  transition: color 200ms ease;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

.site-footer__bottom a span {
  color: var(--gold-light);
  font-size: 15px;
}

@media (max-width: 1060px) {
  .site-footer__top {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .site-footer__cta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    align-items: end;
    padding: 34px 0 0;
    border-top: 1px solid hsl(36 38% 70% / 0.2);
    border-left: 0;
  }

  .site-footer__eyebrow {
    grid-column: 1 / -1;
  }

  .site-footer__cta > p {
    margin-bottom: 0;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    width: min(100% - 32px, 1320px);
    padding-top: 58px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .site-footer__brand > p {
    max-width: 520px;
  }

  .site-footer__nav {
    max-width: 440px;
  }

  .site-footer__cta {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer__cta > p {
    margin: 15px 0 25px;
  }

  .site-footer__signature {
    margin-top: 54px;
  }
}

@media (max-width: 430px) {
  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand__mark {
    width: 44px;
    height: 44px;
  }

  .footer-brand strong {
    font-size: 27px;
  }

  .footer-brand small {
    max-width: 210px;
    line-height: 1.5;
  }

  .site-footer__nav {
    gap: 24px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-links a,
  .site-footer__action,
  .site-footer__action span:last-child,
  .site-footer__bottom a {
    transition: none;
  }
}

/* Kaynak: responsive.css */

/* Compact mobile scale */
@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-inline: clamp(14px, 4.5vw, 18px);
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__name {
    font-size: clamp(22px, 6.7vw, 28px);
  }

  .brand__year {
    font-size: clamp(18px, 5.3vw, 23px);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .mobile-menu {
    top: var(--header-height);
  }

  .hero__inner {
    width: calc(100% - 22px);
    gap: clamp(4px, 0.8dvh, 7px);
  }

  .hero-collage {
    height: clamp(210px, 65vw, 254px);
  }

  .anniversary {
    width: clamp(76px, 21vw, 94px);
    height: clamp(76px, 21vw, 94px);
  }

  .anniversary__number {
    font-size: clamp(28px, 8vw, 35px);
  }

  .anniversary__label {
    font-size: clamp(15px, 4.4vw, 19px);
  }

  .proof-pill {
    min-height: 34px;
    font-size: clamp(9.5px, 2.7vw, 12px);
  }

  .proof-pill__icon {
    width: 24px;
    height: 24px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 43px);
  }

  .hero__lead {
    font-size: clamp(11.5px, 3.25vw, 13px);
  }

  .hero__actions {
    gap: 6px;
  }

  .button {
    min-height: 43px;
  }

  .benefits-section {
    padding-top: 22px;
  }

  .legacy-intro__inner {
    padding-top: 16px;
  }

  .services-section {
    padding: clamp(48px, 12vw, 60px) clamp(9px, 2.7vw, 14px) clamp(54px, 13vw, 68px);
  }

  .services-heading {
    margin-bottom: clamp(26px, 7vw, 34px);
  }

  .services-heading h2 {
    font-size: clamp(36px, 10.5vw, 47px);
  }

  .services-heading > p {
    margin-top: 16px;
    font-size: clamp(11.5px, 3.2vw, 14px);
    line-height: 1.58;
  }

  .services-divider {
    margin-top: 18px;
  }

  .service-card__media {
    height: clamp(138px, 39vw, 176px);
  }

  .service-card__body {
    min-height: clamp(184px, 49vw, 220px);
    padding: clamp(29px, 8vw, 38px) clamp(12px, 3.4vw, 18px) clamp(15px, 4vw, 21px);
  }

  .service-card__icon {
    left: clamp(12px, 3.4vw, 18px);
    width: clamp(46px, 12.5vw, 56px);
    height: clamp(46px, 12.5vw, 56px);
  }

  .service-card h3 {
    font-size: clamp(18px, 5.25vw, 23px);
  }

  .service-card p {
    font-size: clamp(10px, 2.75vw, 12px);
    line-height: 1.48;
  }

  .service-card__link {
    font-size: clamp(9px, 2.45vw, 10.5px);
  }

  .faq-section {
    padding: clamp(56px, 14vw, 70px) 10px clamp(38px, 9vw, 48px);
  }

  .faq-heading {
    margin-bottom: 24px;
  }

  .faq-heading h2 {
    font-size: clamp(40px, 11.5vw, 50px);
  }

  .faq-heading > p:last-child {
    margin-top: 18px;
    font-size: clamp(12px, 3.3vw, 14px);
  }

  .faq-question {
    grid-template-columns: 44px minmax(0, 1fr) 32px;
    gap: 9px;
    min-height: clamp(68px, 18vw, 78px);
    padding: 9px 10px;
  }

  .faq-question > span:nth-child(2) {
    font-size: clamp(15px, 4.5vw, 19px);
  }

  .faq-item__icon {
    width: 42px;
    height: 42px;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    margin-left: 63px;
  }
}

@media (max-width: 480px) {
  .service-card__body {
    min-height: 178px;
    padding-inline: 11px;
  }

  .service-card h3 {
    font-size: clamp(17px, 4.8vw, 20px);
  }

  .service-card p {
    font-size: clamp(9.5px, 2.55vw, 11px);
    line-height: 1.42;
  }
}

/* Kaynak: motion.css */

/* Mobil Ã¶ncelikli, ilerlemeli animasyon sistemi */
:root {
  --motion-distance: 26px;
  --motion-side-distance: 34px;
  --motion-duration: 620ms;
  --motion-heading-duration: 650ms;
  --motion-stagger: 90ms;
}

.motion-heading__line {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  vertical-align: bottom;
}

.motion-heading--forced-lines .motion-heading__line {
  display: block;
}

.motion-heading__inner {
  display: block;
  will-change: opacity, transform;
}

html.motion-ready .motion-reveal,
html.motion-ready .motion-heading .motion-heading__inner {
  opacity: 0;
}

html.motion-ready .motion-reveal {
  --motion-x: 0px;
  --motion-y: var(--motion-distance);
  --motion-scale: 1;
  translate: var(--motion-x) var(--motion-y);
  scale: var(--motion-scale);
  transition:
    opacity var(--motion-duration) var(--ease),
    translate var(--motion-duration) var(--ease),
    scale var(--motion-duration) var(--ease);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, translate, scale;
}

html.motion-ready .motion-reveal--left {
  --motion-x: calc(var(--motion-side-distance) * -1);
  --motion-y: 0px;
}

html.motion-ready .motion-reveal--right {
  --motion-x: var(--motion-side-distance);
  --motion-y: 0px;
}

html.motion-ready .motion-reveal--hero {
  --motion-y: 16px;
  --motion-scale: 0.985;
}

.hero .motion-reveal {
  --motion-duration: 500ms;
}

.hero .motion-heading {
  --motion-heading-duration: 540ms;
}

html.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  will-change: auto;
}

html.motion-ready .motion-heading .motion-heading__inner {
  transform: translate3d(0, 112%, 0);
  transition:
    opacity var(--motion-heading-duration) var(--ease),
    transform var(--motion-heading-duration) var(--ease);
  transition-delay: calc(
    var(--motion-delay, 0ms) + var(--motion-line-index, 0) * var(--motion-stagger)
  );
}

html.motion-ready .motion-heading.is-visible .motion-heading__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.motion-parallax {
  translate: 0 var(--motion-parallax-y, 0px);
  transition: translate 120ms linear;
  will-change: translate;
}

@media (max-width: 640px) {
  :root {
    --motion-distance: 22px;
    --motion-side-distance: 24px;
    --motion-duration: 560ms;
    --motion-heading-duration: 590ms;
    --motion-stagger: 85ms;
  }

  .hero .motion-reveal {
    --motion-duration: 480ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.motion-ready .motion-reveal,
  html.motion-ready .motion-heading .motion-heading__inner,
  .motion-parallax {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    transition: none !important;
    animation: none !important;
  }
}
