:root {
  --bg: #2b103b;
  --panel: #45135e;
  --panel-soft: #f8f0fb;
  --surface: #ffffff;
  --text: #241631;
  --text-soft: #70577f;
  --line: #e3d6ea;
  --brand: #7a2e93;
  --brand-dark: #4b145f;
  --accent: #d46aff;
  --shadow: 0 24px 60px rgba(56, 18, 74, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(227, 214, 234, 0.85);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  display: block;
  width: 154px;
  max-width: 38vw;
  height: auto;
  border-radius: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  color: var(--text);
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  font-size: 0.86rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(212, 106, 255, 0.22), transparent 30%),
    radial-gradient(circle at top left, rgba(122, 46, 147, 0.12), transparent 26%),
    linear-gradient(180deg, #fff9ff 0%, #f7eefb 100%);
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-branding {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(227, 214, 234, 0.95);
  box-shadow: var(--shadow);
}

.hero-logo {
  display: block;
  width: min(420px, 100%);
  height: auto;
  border-radius: 14px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.hero-text,
.section-heading p,
.split p,
.contact-grid > div > p {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-actions,
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

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

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(122, 46, 147, 0.28);
}

.button-secondary {
  border-color: rgba(122, 46, 147, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.button-full {
  width: 100%;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li,
.area-box li {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(227, 214, 234, 0.95);
  font-weight: 600;
}

.hero-card,
.card,
.contact-form,
.contact-panel,
.map-card,
.area-box {
  background: var(--surface);
  border: 1px solid rgba(227, 214, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 2rem;
  background: linear-gradient(180deg, #351046 0%, #5b1977 100%);
  color: #fff;
}

.card-label {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.hero-card h2 {
  margin: 0;
  font-size: 2rem;
}

.card-time {
  margin: 0.2rem 0 1.5rem;
  font-size: 1.15rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.trust-bar {
  border-top: 1px solid rgba(227, 214, 234, 0.85);
  border-bottom: 1px solid rgba(227, 214, 234, 0.85);
  background: #fffafd;
}

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

.trust-items span {
  color: var(--text-soft);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fffafd 0%, #f8f0fb 100%);
}

.section-dark {
  background: var(--bg);
  color: #fff;
}

.section-dark p,
.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

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

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

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

.photo-feature-card,
.gallery-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(227, 214, 234, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-feature-card img,
.gallery-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.photo-feature-card img {
  height: 280px;
}

.photo-feature-copy {
  padding: 1.25rem 1.25rem 1.4rem;
}

.photo-feature-copy h3,
.gallery-card figcaption {
  margin: 0;
}

.photo-feature-copy p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.25rem;
  grid-auto-rows: 240px;
}

.gallery-card {
  margin: 0;
}

.gallery-card img {
  height: calc(100% - 64px);
}

.gallery-card figcaption {
  padding: 1rem 1.15rem 1.1rem;
  color: var(--text-soft);
}

.gallery-card-tall {
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.card {
  padding: 1.75rem;
}

.card h3,
.feature-list h3,
.area-box h3 {
  margin-top: 0;
}

.card p,
.feature-list p,
.area-box li,
.contact-panel span {
  color: var(--text-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list > div {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.area-box {
  padding: 1.75rem;
  background: var(--panel-soft);
}

.area-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.cta-band {
  background: linear-gradient(135deg, #3a114c, #6e1f8f);
  color: #fff;
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.contact-panel {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.contact-panel a {
  font-weight: 700;
}

.map-card {
  margin-top: 1.5rem;
  padding: 0.65rem;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
}

.contact-form {
  padding: 1.5rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(122, 46, 147, 0.2);
  border-color: var(--brand);
}

.site-footer {
  background: #240d31;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.8rem 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.5rem;
}

.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cards,
  .photo-feature-grid,
  .trust-items,
  .hero-points,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-inner,
  .footer-content {
    display: grid;
  }

  .hero h1 {
    max-width: none;
  }

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

  .gallery-card-tall,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header .container {
    min-height: 72px;
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 120px;
  }

  .hero-branding {
    width: 100%;
    justify-content: center;
  }

  .hero-logo {
    width: min(320px, 100%);
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 4.5rem;
  }

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

  .gallery-card img {
    height: 260px;
  }
}
