:root {
  --bg: #f7f1e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf2;
  --surface-dark: #17130f;
  --text: #1d1915;
  --muted: #63594e;
  --line: rgba(29, 25, 21, 0.1);
  --brand: #bd5d2d;
  --brand-dark: #8d3f18;
  --accent: #d8c09a;
  --shadow: 0 20px 50px rgba(53, 34, 16, 0.12);
  --radius: 24px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(189, 93, 45, 0.18), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(216, 192, 154, 0.65), transparent 22%),
    linear-gradient(180deg, #fbf5eb 0%, #f5eee2 54%, #efe4d1 100%);
  line-height: 1.5;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 232, 0.72);
  border-bottom: 1px solid rgba(29, 25, 21, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-dark);
  color: #fff2df;
  font-size: 0.95rem;
}

.brand-text {
  font-size: 0.96rem;
}

.hero {
  padding: 1rem 0 3rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(17, 13, 10, 0.78) 0%, rgba(17, 13, 10, 0.52) 42%, rgba(17, 13, 10, 0.18) 72%, rgba(17, 13, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(17, 13, 10, 0.16), rgba(17, 13, 10, 0.38));
}

.hero-copy {
  max-width: 44rem;
  padding-top: 1.5rem;
  color: #fff7ee;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: -0.05em;
  color: #fffdf8;
}

h1 span,
h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

h1 span {
  display: inline-block;
  color: #fff3d9;
  transform: rotate(-2deg);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.hero-text,
.section p,
.faq-list p,
.offer-summary,
.offer-note,
.contact-inline,
.trust-items span {
  color: var(--muted);
}

.eyebrow-light {
  color: rgba(255, 245, 228, 0.9);
}

.hero-text {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  font-size: 1.06rem;
  color: rgba(255, 247, 238, 0.92);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--surface-dark);
  color: #fff5e8;
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2a231e;
}

.btn-secondary,
.btn-outline {
  border-color: rgba(29, 25, 21, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: #fff8ef;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-small {
  min-height: 42px;
  padding: 0.75rem 1rem;
}

.nav .btn-outline {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff7ee;
  box-shadow: 0 12px 28px rgba(189, 93, 45, 0.28);
}

.nav .btn-outline:hover,
.nav .btn-outline:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-block {
  width: 100%;
}

.hero-points,
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 56rem;
  align-self: stretch;
}

.offer-list li {
  position: relative;
  padding-left: 1.25rem;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.hero-point-card {
  padding: 1.35rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-point-badge {
  display: block;
  width: auto;
  height: 44px;
  margin: 0.9rem 0 0;
  object-fit: contain;
}

.hero-point-card h3 {
  margin-bottom: 0.55rem;
}

.hero-point-card p {
  margin: 0;
  color: var(--muted);
}

.offer-card,
.feature-card,
.stats-card,
.testimonial,
.cta-card,
.faq-list details {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.offer-card {
  padding: 1.5rem;
  border-radius: 28px;
}

.offer-label {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(189, 93, 45, 0.12);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-price {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.2rem;
}

.offer-current {
  display: flex;
  align-items: flex-start;
}

.currency {
  font-size: 1.7rem;
  margin-top: 0.65rem;
}

.amount {
  font-size: 5rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.offer-regular {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(29, 25, 21, 0.45);
}

.offer-summary {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.offer-list {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.offer-note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  text-align: center;
}

.trust-strip {
  padding: 1rem 0 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-items div {
  padding: 1.2rem;
  border-top: 1px solid var(--line);
}

.trust-items strong,
.stat strong {
  display: block;
  margin-bottom: 0.25rem;
}

.trust-name {
  display: block;
  margin-top: 0.6rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.55), rgba(248, 237, 218, 0.55));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.about-text {
  padding-right: 0.5rem;
}

.about-text h3 {
  margin-top: 2rem;
}

.about-side {
  display: grid;
  gap: 1.2rem;
}

.about-image-card {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
}

.about-image {
  width: 100%;
  max-width: 480px;
  max-height: 720px;
  object-fit: contain;
  object-position: center top;
}

.studio-heading {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.studio-copy {
  max-width: 34rem;
}

.studio-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.studio-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.studio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.studio-image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.studio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.stats-card-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.topics span {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(29, 25, 21, 0.08);
  font-weight: 600;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.testimonial p {
  margin-top: 0;
  font-size: 1.05rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
}

.testimonials-toggle {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.testimonials-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 180ms ease, opacity 180ms ease;
}

.testimonials-link:hover,
.testimonials-link:focus-visible {
  color: var(--brand-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-content {
  height: 0;
  overflow: hidden;
  transition: height 280ms ease;
}

.faq-content > p {
  margin: 0.8rem 0 0;
}

.faq-list details[open] .faq-content {
  height: auto;
}

.cta-card {
  padding: 2rem;
  border-radius: 30px;
}

.cta-copy {
  margin-bottom: 1.5rem;
}

.cta-reassurance {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.cta-form-card {
  padding: 0;
  border-radius: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cta-privacy-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-privacy-note a {
  color: var(--brand);
}

.cta-side {
  display: grid;
  gap: 1rem;
}

.cta-testimonial {
  margin: 0;
  padding: 1.15rem 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.cta-testimonial p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.45;
}

.cta-testimonial cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.contact-card {
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 0.85rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  min-width: 1.25rem;
  color: var(--text);
  line-height: 1;
}

.contact-icon svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.contact-card a {
  color: var(--brand);
}

.cta-map-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.6);
  min-height: 320px;
}

.cta-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 0.6rem;
}

.site-footer {
  padding: 2rem 0 7rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 22px;
  background: rgba(23, 19, 15, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  border-radius: 999px;
  color: #fff5e8;
  font-weight: 700;
}

.mobile-cta a:first-child {
  background: rgba(255, 255, 255, 0.08);
}

.mobile-cta a:last-child {
  background: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-bottom,
  .about-grid,
  .studio-grid,
  .cta-grid,
  .faq-grid,
  .features-grid,
  .testimonials,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .stats-card {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-panel,
  .hero-image {
    min-height: 560px;
  }

  .hero-overlay {
    align-items: end;
    background:
      linear-gradient(180deg, rgba(17, 13, 10, 0.18) 0%, rgba(17, 13, 10, 0.34) 30%, rgba(17, 13, 10, 0.7) 100%);
  }

  .about-image-card {
    min-height: 0;
  }

  .about-image {
    max-height: 640px;
  }

  .studio-copy {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero-panel,
  .hero-image {
    min-height: 500px;
  }

  .hero-copy {
    padding-top: 0;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .studio-actions .btn {
    width: 100%;
  }

  .about-image {
    max-width: 100%;
    max-height: 520px;
  }

  .section {
    padding: 4rem 0;
  }

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

  .mobile-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 8rem;
  }
}
