:root {
  --color-ink: #22242a;
  --color-muted: #62666f;
  --color-line: #e5e2ee;
  --color-paper: #fffdf9;
  --color-soft: #f5f3fb;
  --color-panel: #ffffff;
  --color-primary: #7167d8;
  --color-primary-dark: #5149ad;
  --color-sage: #8ba88d;
  --color-wood: #b98243;
  --shadow-soft: 0 16px 40px rgba(34, 36, 42, 0.1);
  --shadow-card: 0 10px 28px rgba(34, 36, 42, 0.08);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

address {
  margin-top: 28px;
  color: var(--color-muted);
  font-style: normal;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #ffffff;
  background: var(--color-primary-dark);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(229, 226, 238, 0.75);
  backdrop-filter: blur(16px);

}

.header-layout {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
      
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;


}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--color-ink);
}

.hero {
  position: relative;
  min-height: calc(88vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #191a20;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(19, 20, 26, 0.78), rgba(19, 20, 26, 0.48) 52%, rgba(19, 20, 26, 0.2)),
    linear-gradient(0deg, rgba(19, 20, 26, 0.22), rgba(19, 20, 26, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8d4ff;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 4.2rem;
  line-height: 1.04;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  line-height: 1.16;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.25;
}

h4 {
  margin-bottom: 10px;
  color: var(--color-ink);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--color-primary);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-primary-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.intro-band {
  background: var(--color-ink);
  color: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-grid div {
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  font-size: 1.05rem;
}

.intro-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
}

.studio-section,
.plans-section,
.faq-section {
  background: var(--color-soft);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.9fr 1fr;
}

.split-layout.reverse .section-copy {
  order: 2;
}

.section-copy p,
.section-heading p,
.service-card p,
.team-card p,
.pricing-card p,
.mini-grid p,
.faq-grid p,
.contact-section p,
.card-note {
  color: var(--color-muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-weight: 900;
  content: "✓";
}

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

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-grid,
.team-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.pricing-card,
.team-card,
.included-box,
.mini-grid article,
.faq-grid details,
.contact-form {
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.service-card {
  padding: 28px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-grid {
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  align-items: start;
}

.pricing-card {
  padding: 28px;
}

.featured-card {
  border-color: rgba(113, 103, 216, 0.58);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.price-group {
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
}

.price-group:first-of-type {
  border-top: 0;
}

.price-group p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0;
}

.price-group strong {
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.included-box {
  margin-top: 28px;
  padding: 30px;
}

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

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.team-content {
  padding: 26px;
}

.role {
  margin-bottom: 14px;
  color: var(--color-primary-dark);
  font-weight: 800;
}

.equipment-section {
  background:
    linear-gradient(180deg, rgba(139, 168, 141, 0.12), rgba(139, 168, 141, 0)),
    var(--color-paper);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.mini-grid article {
  padding: 18px;
  box-shadow: none;
}

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

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

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

.faq-grid details {
  padding: 20px 22px;
  box-shadow: none;
}

.faq-grid summary {
  color: var(--color-ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-grid p {
  margin: 14px 0 0;
}

.contact-section {
  background: var(--color-ink);
  color: #ffffff;
}

.contact-section .eyebrow {
  color: #d8d4ff;
}

.contact-section p,
.contact-section address {
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--color-ink);
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid #d8d4e4;
  border-radius: var(--radius);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(113, 103, 216, 0.22);
  border-color: var(--color-primary);
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.form-status.success {
  color: #2d7c4f;
}

.form-status.error {
  color: #b93a3a;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #15161a;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout p {
  margin: 0;
}

.footer-layout p:first-child {
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .main-nav {
    position: absolute;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
 
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .split-layout,
  .split-layout.reverse,
  .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .section-copy {
    order: 0;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 158px;
       
  }

  .hero {
    min-height: calc(86vh - var(--header-height));
  }

  .hero-content {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .intro-grid,
  .service-grid,
  .team-grid,
  .gallery-grid,
  .faq-grid,
  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .intro-grid div,
  .intro-grid div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .contact-actions,
  .footer-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .team-card img,
  .gallery-grid img {
    height: 250px;
  }

  .contact-form,
  .pricing-card,
  .service-card,
  .included-box {
    padding: 22px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
