:root {
  --bg: #f7f3f1;
  --paper: #fffdfc;
  --ink: #211b1d;
  --muted: #756c6f;
  --line: rgba(33, 27, 29, 0.12);
  --rose: #b98e93;
  --rose-deep: #7c555c;
  --cream: #eee4df;
  --white: #ffffff;
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1220px;
  --shadow: 0 24px 80px rgba(40, 29, 32, 0.08);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus {
  transform: translateY(0);
}

/* ---------------- HEADER ---------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 241, 0.88);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: #3d3538;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.menu-toggle {
  display: none;
}

/* ---------------- TYPOGRAPHY ---------------- */

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 7vw, 7.5rem);
  line-height: 0.91;
  font-weight: 600;
}

h1 span {
  color: var(--rose-deep);
}

.section-heading h2,
.pricing-head h2,
.feature-copy h2,
.faq-grid h2,
.booking-copy h2,
.gallery-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
  line-height: 0.98;
  font-weight: 600;
}

/* ---------------- HERO ---------------- */

.hero {
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: 145px 0 76px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-light {
  background: white;
  color: var(--ink);
}
.button-outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  color: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.2s ease;
}
.text-link:hover span {
  transform: translate(4px, 4px);
}

.hero-meta {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-meta strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  top: 48%;
  left: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #eadfdb;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 44px 34px 0;
  overflow: hidden;
  border-radius: 36px;
  background: #e8dfda;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-image-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-image-note span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--rose-deep);
}

.hero-image-note p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-float-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 214px;
  padding: 24px;
  border-radius: 26px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.hero-float-card > span {
  display: block;
  margin-bottom: 26px;
  font-size: 1.35rem;
}

.hero-float-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

/* ---------------- STRIP ---------------- */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.trust-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 10px;
}

.trust-grid span {
  position: relative;
  padding-left: 18px;
  color: #51474a;
  font-size: 0.84rem;
  font-weight: 600;
}

.trust-grid span::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 0.65em;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------------- SERVICES ---------------- */

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

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

.service-card {
  min-height: 330px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-index {
  margin-bottom: auto;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 46px 0 12px;
  font-size: 1.8rem;
  font-weight: 600;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-tag {
  margin-top: 16px;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------------- STUDIO ---------------- */

.feature-section {
  padding: 120px 0;
  background: var(--ink);
  color: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 86px;
  align-items: center;
}

.feature-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 32px;
  background: #d8c5bc;
}

.feature-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.feature-photo-caption {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(32, 26, 28, 0.68);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.feature-photo-caption span {
  color: #e1c6ca;
  font-size: 0.74rem;
}

.feature-photo-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.feature-copy {
  color: rgba(255, 255, 255, 0.66);
}

.feature-copy .eyebrow {
  color: #e3c9cd;
}

.feature-copy h2 {
  margin-bottom: 40px;
  color: white;
}

.feature-lead {
  margin-bottom: 24px;
  color: white;
  font-size: 1.35rem;
}

.feature-list {
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
}

.feature-list span {
  color: #dcbfc4;
}

/* ---------------- PRICING ---------------- */

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

.pricing-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.pricing-head > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s var(--ease);
}

.price-row:hover {
  padding-inline: 12px;
}

.price-row div {
  display: grid;
  gap: 2px;
}

.price-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.price-row div span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-row > span {
  flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ---------------- GALLERY ---------------- */

.gallery-section {
  padding: 120px 0;
  background: #eee6e2;
}

.gallery-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.gallery-head > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #d9d1cd;
}

.gallery-card-tall {
  min-height: 620px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

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

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.gallery-card figcaption span {
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.gallery-card figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
}

/* ---------------- FAQ ---------------- */

.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.plus {
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.faq-item button[aria-expanded="true"] .plus {
  transform: rotate(45deg);
  background: var(--rose);
  color: white;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 50px 24px 0;
}

/* ---------------- BOOKING ---------------- */

.booking-section {
  padding: 95px 0;
  background: var(--rose-deep);
  color: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.booking-copy .eyebrow {
  color: #efdfe1;
}

.booking-copy h2 {
  max-width: 780px;
}

.booking-copy > p:last-child {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 58px 0 26px;
  background: #171214;
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}

.footer-top p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
  align-content: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------------- REVEALS ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

/* ---------------- TABLET ---------------- */

@media (max-width: 1020px) {
  .hero-grid,
  .feature-grid,
  .pricing-head,
  .gallery-head,
  .faq-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }
  .hero-media {
    min-height: 620px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    gap: 45px;
  }
  .pricing-head,
  .gallery-head {
    gap: 24px;
  }
  .faq-grid {
    gap: 46px;
  }
  .booking-actions {
    justify-content: flex-start;
  }

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

  .gallery-card-tall {
    grid-row: span 2;
    min-height: 780px;
  }
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header,
  .site-header.is-scrolled,
  body.menu-open .site-header {
    background: var(--bg);
    border-bottom-color: var(--line);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-line {
    width: 18px;
    height: 1.5px;
    display: block;
    background: var(--ink);
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-line:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: 74px;
    left: 0;
    right: 0;
    height: calc(100dvh - 74px);
    min-height: calc(100vh - 74px);
    padding: 24px 20px 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--bg);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s var(--ease),
      visibility 0s linear 0.3s;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.3s var(--ease),
      visibility 0s linear 0s;
  }

  .main-nav > a,
  .main-nav > a:not(.nav-cta) {
    position: static;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.1rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 22px;
    padding: 15px 20px !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--ink);
    color: white !important;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 78px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.5rem);
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-image-wrap {
    inset: 0 18px 50px 0;
    border-radius: 28px;
  }

  .hero-float-card {
    width: 184px;
    padding: 19px;
  }

  .trust-grid {
    padding: 18px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .section,
  .feature-section,
  .gallery-section {
    padding: 88px 0;
  }

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

  .feature-photo,
  .feature-photo img {
    min-height: 520px;
    height: 520px;
  }

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

  .gallery-card,
  .gallery-card-tall {
    min-height: 520px;
  }

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

/* ---------------- SMALL MOBILE ---------------- */

@media (max-width: 520px) {
  .hero-media {
    min-height: 430px;
  }

  .hero-image-wrap {
    inset: 0 10px 42px 0;
  }

  .hero-image-note {
    left: 10px;
    bottom: 10px;
  }

  .hero-float-card {
    right: -2px;
    width: 160px;
    padding: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .price-row {
    align-items: flex-start;
  }

  .feature-photo,
  .feature-photo img {
    min-height: 440px;
    height: 440px;
  }

  .gallery-card,
  .gallery-card-tall {
    min-height: 450px;
  }

  .booking-actions {
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
