:root {
  --page: #fbf8fb;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.82);
  --cream: #fff8f0;
  --lavender: #f0e7f5;
  --plum: #3d214f;
  --purple: #7b4bb3;
  --purple-2: #a66de0;
  --rose: #e6b3d2;
  --gold: #d9b86c;
  --text: #2f2638;
  --muted: #695f73;
  --border: rgba(123, 75, 179, 0.14);
  --shadow: 0 22px 55px rgba(61, 33, 79, 0.14);
  --shadow-soft: 0 12px 30px rgba(61, 33, 79, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
  --ease: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(166, 109, 224, 0.16), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(217, 184, 108, 0.22), transparent 26%),
    linear-gradient(180deg, #fcfafc 0%, #f7eff8 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-container {
  width: min(calc(100% - 44px), var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 250, 252, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(123, 75, 179, 0.10);
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--purple-2), var(--gold));
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(61, 33, 79, 0.18);
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--plum);
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #8c8194;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a {
  position: relative;
  transition: color var(--ease);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--purple-2));
  transition: width var(--ease);
}

.main-nav a:hover {
  color: var(--purple);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-button {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(123, 75, 179, 0.08);
  border: 1px solid rgba(123, 75, 179, 0.14);
  color: var(--purple);
  font-weight: 800;
  transition: all var(--ease);
}

.header-button:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(123, 75, 179, 0.22);
}

/* COMMON */

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 184, 108, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,248,240,0.58));
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--border);
  color: var(--purple);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--plum);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2.35rem, 4.4vw, 4.1rem);
  line-height: 1;
}

p {
  color: var(--muted);
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 16px 32px rgba(123, 75, 179, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--plum), var(--purple));
  box-shadow: 0 20px 40px rgba(123, 75, 179, 0.30);
}

.btn-secondary {
  background: #fff;
  color: var(--purple);
  border-color: rgba(123, 75, 179, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--purple-2), var(--purple));
}

/* HERO */

.hero-section {
  padding: 70px 0 80px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.hero-content p {
  margin: 0 0 30px;
  max-width: 660px;
  font-size: 1.15rem;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  color: #5d5368;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,248,240,0.76));
  border: 1px solid rgba(123, 75, 179, 0.16);
  box-shadow: var(--shadow);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255,255,255,0.9), transparent 22%),
    radial-gradient(circle at 80% 74%, rgba(217,184,108,0.22), transparent 28%),
    radial-gradient(circle at 26% 78%, rgba(166,109,224,0.22), transparent 28%);
  filter: blur(14px);
  z-index: 0;
}

.hero-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(580px, 62vh);
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
}

.hero-note {
  position: absolute;
  left: -22px;
  bottom: 28px;
  z-index: 3;
  width: min(320px, 90%);
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(123, 75, 179, 0.14);
  box-shadow: 0 18px 38px rgba(61, 33, 79, 0.16);
  backdrop-filter: blur(14px);
}

.hero-note strong {
  display: block;
  color: var(--plum);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-note span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

/* SECTIONS */

.section-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--paper-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.about-layout,
.value-card,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.about-photo,
.contact-photo {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #eee;
}

.about-photo img,
.contact-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.section-content p,
.contact-box p {
  font-size: 1.08rem;
  max-width: 740px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 1.08rem;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 75, 179, 0.28);
  box-shadow: 0 22px 44px rgba(61, 33, 79, 0.14);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(166,109,224,0.16), rgba(255,255,255,0.85));
  font-size: 1.4rem;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 1.3rem;
}

.service-card p {
  margin: 0 0 18px;
}

.service-link {
  display: inline-flex;
  color: var(--purple);
  font-weight: 900;
  transition: transform var(--ease), color var(--ease);
}

.service-link:hover {
  color: var(--plum);
  transform: translateX(4px);
}

/* VALUE */

.value-card {
  grid-template-columns: 0.95fr 1.05fr;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
}

.value-list span {
  font-size: 1.4rem;
}

.value-list strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--plum);
}

.value-list p {
  margin: 0;
}

/* CONTACT */

.contact-layout {
  grid-template-columns: 1fr 0.8fr;
}

.contact-box {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

/* FOOTER */

.footer {
  padding: 30px 0 44px;
}

.footer-shell {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--plum), #5f3a79);
  color: #fff;
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-size: 1.2rem;
}

.footer-brand span {
  color: rgba(255,255,255,0.72);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-links a,
.footer-links button {
  color: rgba(255,255,255,0.82);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.72);
}

/* MODAL */

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.policy-modal.active {
  display: block;
}

.policy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 22, 44, 0.62);
  backdrop-filter: blur(8px);
}

.policy-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 28px));
  max-height: 84vh;
  overflow-y: auto;
  margin: 7vh auto;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.policy-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.policy-logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 50%;
}

.policy-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--plum);
  font-size: 28px;
  cursor: pointer;
}

/* WHATSAPP */

.whatsapp-widget {
  position: fixed;
  right: 48px;
  bottom: 48px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-widget span {
  max-width: 250px;
  padding: 12px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  color: var(--plum);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all var(--ease);
}

.whatsapp-widget:hover span,
.whatsapp-widget:focus-within span {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-widget a {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.26);
  transition: transform var(--ease), box-shadow var(--ease);
}

.whatsapp-widget a:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.34);
}

.whatsapp-widget img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .hero-shell,
  .about-layout,
  .value-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-image-frame img {
    height: auto;
    min-height: 420px;
    max-height: none;
  }

  .hero-note {
    left: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    justify-content: center;
  }

  .brand {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 1.85rem;
  }

  .brand-subtitle {
    font-size: 0.84rem;
  }

  .main-nav {
    display: none;
  }

  .header-button {
    display: none;
  }

  .hero-section {
    padding: 40px 0 54px;
  }

  .hero-shell {
    gap: 34px;
  }

  .hero-content h1 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    flex-direction: column;
  }

  .hero-points span {
    text-align: center;
  }

  .hero-image-frame {
    border-radius: 28px;
    padding: 8px;
  }

  .hero-image-frame img {
    min-height: 320px;
    border-radius: 22px;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .section {
    padding: 62px 0;
  }

  .section-card,
  .contact-box {
    padding: 24px;
  }

  .about-photo img,
  .contact-photo img {
    height: 310px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-widget span {
    display: none;
  }

  .whatsapp-widget a {
    width: 56px;
    height: 56px;
  }
}
