*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #33281F;
  background: #FAF6F1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: #33281F;
  line-height: 1.18;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: #33281F;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: #B36BB3;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #9E5AA0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #33281F;
  border-color: #33281F;
}

.btn-outline:hover {
  background: #33281F;
  color: #FAF6F1;
  transform: translateY(-2px);
}

.btn-ink {
  background: #33281F;
  color: #FFFFFF;
}

.btn-ink:hover {
  background: #1F160E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ---------- Kickers ---------- */

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #33281F;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 18px;
}

.section-head p {
  font-size: 17px;
  color: #33281F;
  max-width: 820px;
}

/* ---------- Header / hamburger-first nav ---------- */

.site-header {
  position: relative;
  z-index: 60;
}

.burger-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAF6F1;
  border-bottom: 2px solid #B36BB3;
  padding: 14px 28px;
  transition: box-shadow 0.3s ease;
}

.burger-nav.scrolled {
  box-shadow: 0 6px 18px rgba(179, 107, 179, 0.2);
}

.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #33281F;
  text-decoration: none;
}

.brand-dot {
  color: #B36BB3;
}

.burger-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger-btn .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: #B36BB3;
  border-radius: 2px;
}

.burger-btn:hover .bar {
  background: #9E5AA0;
}

.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #B36BB3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transform: scale(1.05);
  transition: visibility 0s linear 0.3s, transform 0.3s ease;
}

.full-menu.open {
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s, transform 0.3s ease;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 26px;
  width: 48px;
  height: 48px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: #1F160E;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-flowers {
  display: flex;
  gap: 22px;
  margin-bottom: 26px;
}

.full-menu .css-flower .petal {
  background: #FAF6F1;
}

.full-menu .css-flower .core {
  background: #E9D5EE;
}

.full-menu .css-flower {
  --s: 34px;
}

.menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.menu-links li {
  margin: 14px 0;
}

.menu-links a {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  color: #1F160E;
  text-decoration: none;
  padding: 6px 18px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease;
}

.menu-links a:hover {
  border-bottom-color: #1F160E;
}

.menu-foot {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: #1F160E;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- Banner hero ---------- */

.banner-hero {
  background: #FAF6F1;
  padding-bottom: 96px;
}

.banner-strip {
  height: 60px;
  background: #B36BB3;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 44px;
  overflow: hidden;
}

.banner-strip.slim {
  height: 44px;
}

.banner-strip .css-flower {
  flex: 0 0 auto;
  --s: 26px;
}

.banner-strip .css-flower .petal {
  background: #FAF6F1;
}

.banner-strip .css-flower .core {
  background: #E9D5EE;
}

.hero-text {
  max-width: 980px;
  margin: 0 auto;
  padding: 74px 24px 0;
}

.hero-eyebrow {
  display: inline-block;
  background: #B36BB3;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  margin: 28px 0 22px;
  max-width: 20ch;
}

.hero-sub {
  font-size: 18px;
  color: #33281F;
  max-width: 780px;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- CSS flower ---------- */

.css-flower {
  --s: 44px;
  position: relative;
  width: var(--s);
  height: var(--s);
  display: inline-block;
}

.css-flower .petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--s) * 0.36);
  height: calc(var(--s) * 0.36);
  margin: calc(var(--s) * -0.18) 0 0 calc(var(--s) * -0.18);
  background: #B36BB3;
  border-radius: 50%;
}

.css-flower .petal:nth-child(1) {
  transform: rotate(0deg) translateX(calc(var(--s) * 0.42));
}

.css-flower .petal:nth-child(2) {
  transform: rotate(72deg) translateX(calc(var(--s) * 0.42));
}

.css-flower .petal:nth-child(3) {
  transform: rotate(144deg) translateX(calc(var(--s) * 0.42));
}

.css-flower .petal:nth-child(4) {
  transform: rotate(216deg) translateX(calc(var(--s) * 0.42));
}

.css-flower .petal:nth-child(5) {
  transform: rotate(288deg) translateX(calc(var(--s) * 0.42));
}

.css-flower .core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--s) * 0.45);
  height: calc(var(--s) * 0.45);
  margin: calc(var(--s) * -0.225) 0 0 calc(var(--s) * -0.225);
  background: #E9D5EE;
  border-radius: 50%;
}

/* ---------- Magazine blocks ---------- */

.magazine-section {
  background: #FAF6F1;
  padding: 40px 0 20px;
}

.magazine-head {
  max-width: 880px;
  margin: 0 auto 74px;
  padding: 0 24px;
}

.magazine-head h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0 0 18px;
}

.magazine-head p {
  font-size: 18px;
  color: #33281F;
}

.mag-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 96px;
  padding: 0 24px;
}

.mag-block.flip .mag-graphic {
  order: -1;
}

.mag-text .mag-tag {
  display: inline-block;
  background: #E9D5EE;
  color: #33281F;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.mag-text h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 16px;
}

.mag-text p {
  color: #33281F;
  font-size: 16.5px;
}

.mag-link {
  display: inline-block;
  margin-top: 20px;
  color: #33281F;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 3px solid #B36BB3;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mag-link:hover {
  color: #9E5AA0;
  border-color: #9E5AA0;
}

.mag-graphic {
  background: #E9D5EE;
  border-radius: 26px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mag-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(#D9BBDD 1px, transparent 1px);
  background-size: 22px 22px;
}

.flower-graphic .css-flower {
  --s: 132px;
}

.flower-graphic .css-flower .petal {
  background: #B36BB3;
}

.flower-graphic .css-flower .core {
  background: #FAF6F1;
}

/* ---------- Rising sun graphic ---------- */

.sun-graphic {
  position: relative;
  width: 230px;
  height: 210px;
}

.sun-graphic .sun-ray {
  position: absolute;
  left: 50%;
  bottom: 162px;
  width: 9px;
  height: 34px;
  margin-left: -4.5px;
  background: #B36BB3;
  border-radius: 5px 5px 0 0;
  transform-origin: 50% 100%;
}

.sun-graphic .sun-ray:nth-child(1) {
  transform: rotate(0deg);
}

.sun-graphic .sun-ray:nth-child(2) {
  transform: rotate(-16deg);
}

.sun-graphic .sun-ray:nth-child(3) {
  transform: rotate(16deg);
}

.sun-graphic .sun-ray:nth-child(4) {
  transform: rotate(-32deg);
}

.sun-graphic .sun-ray:nth-child(5) {
  transform: rotate(32deg);
}

.sun-graphic .sun-dome {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 130px;
  height: 130px;
  margin-left: -65px;
  border-radius: 50% 50% 0 0;
  background: #B36BB3;
}

.sun-graphic .sun-horizon {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 200px;
  height: 8px;
  margin-left: -100px;
  background: #33281F;
  border-radius: 4px;
}

/* ---------- Building stack graphic ---------- */

.stack-graphic {
  position: relative;
  width: 210px;
  height: 200px;
}

.stack-graphic .stack-block {
  position: absolute;
  left: 50%;
  background: #B36BB3;
  border-radius: 12px;
}

.stack-graphic .stack-a {
  bottom: 128px;
  width: 74px;
  height: 56px;
  margin-left: -37px;
}

.stack-graphic .stack-b {
  bottom: 66px;
  width: 116px;
  height: 56px;
  margin-left: -58px;
}

.stack-graphic .stack-c {
  bottom: 6px;
  width: 176px;
  height: 54px;
  margin-left: -88px;
}

.stack-graphic .stack-block::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 6px;
  border-radius: 3px;
  background: #E9D5EE;
}

/* ---------- Metric band ---------- */

.metric-band {
  background: #E9D5EE;
  padding: 84px 24px;
}

.metric-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.metric-head h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.metric-head p {
  color: #33281F;
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
}

.metric-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
}

.metric {
  flex: 1;
  text-align: center;
  border-right: 1px solid #C9A8CB;
  padding: 8px 12px;
}

.metric:last-child {
  border-right: none;
}

.metric-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  color: #B36BB3;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #33281F;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: #B36BB3;
  padding: 96px 24px;
  text-align: center;
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: clamp(30px, 4.5vw, 48px);
}

.cta-band p {
  color: #FFFFFF;
  font-size: 18px;
  max-width: 720px;
  margin: 18px auto 34px;
}

/* ---------- Footer ---------- */

.footer-top {
  background: #E9D5EE;
  padding: 50px 24px 46px;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #33281F;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 16px;
}

.footer-links a {
  color: #33281F;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  color: #9E5AA0;
  text-decoration: underline;
}

.footer-bottom {
  background: #33281F;
  padding: 22px 24px;
  text-align: center;
  color: #E9D5EE;
  font-size: 14px;
}

.footer-bottom a {
  color: #E9D5EE;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ---------- Secondary page hero ---------- */

.page-hero {
  padding: 84px 0 46px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 24px 0 18px;
}

.page-hero p {
  font-size: 18px;
  color: #33281F;
  max-width: 820px;
}

/* ---------- Services page ---------- */

.services-listing {
  padding: 20px 0 40px;
}

.section-head {
  margin-bottom: 44px;
}

.service-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #EAD8ED;
  border-radius: 22px;
  padding: 38px 40px;
  margin-bottom: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(179, 107, 179, 0.18);
}

.svc-num {
  position: absolute;
  top: 30px;
  right: 36px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: #D9BBDD;
}

.service-item h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 14px;
  max-width: 85%;
}

.service-item p {
  color: #33281F;
  max-width: 86%;
}

.svc-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  max-width: 86%;
}

.svc-list li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  font-weight: 600;
  color: #33281F;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #B36BB3;
}

/* ---------- Process ---------- */

.process-section {
  background: #FFFFFF;
  padding: 90px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-step {
  background: #E9D5EE;
  border-radius: 18px;
  padding: 26px 22px;
}

.process-step .step-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 22px;
  color: #B36BB3;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.process-step p {
  color: #33281F;
  font-size: 14.5px;
}

/* ---------- Contact page ---------- */

.contact-section {
  padding: 20px 0 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-form {
  background: #FFFFFF;
  border: 1px solid #EAD8ED;
  border-radius: 22px;
  padding: 40px;
}

.contact-form h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 10px;
}

.form-note {
  color: #33281F;
  font-size: 15px;
  margin: 0 0 24px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #33281F;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #D9BBDD;
  border-radius: 12px;
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  color: #33281F;
  background: #FAF6F1;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #B36BB3;
  background: #FFFFFF;
}

.form-status {
  margin: 16px 0 0;
  font-weight: 700;
  color: #33281F;
  min-height: 24px;
}

.form-status.success {
  color: #8F4E9C;
}

.contact-details .info-block {
  background: #E9D5EE;
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.info-block p {
  color: #33281F;
  margin: 6px 0;
}

.info-block a {
  color: #33281F;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #B36BB3;
}

.info-block a:hover {
  color: #9E5AA0;
  border-color: #9E5AA0;
}

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

.faq-section {
  padding: 30px 0 90px;
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 2px solid #EAD8ED;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 0;
  font-family: 'Sora', 'Segoe UI', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #33281F;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  color: #B36BB3;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 320px;
}

.faq-a p {
  padding: 0 0 22px;
  color: #33281F;
  max-width: 760px;
}

/* ---------- Reveal ---------- */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .mag-block {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mag-block.flip .mag-graphic {
    order: 0;
  }

  .mag-graphic {
    min-height: 300px;
  }

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

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

  .service-item p,
  .service-item h3,
  .svc-list {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .banner-strip {
    padding: 0 12px;
    justify-content: space-between;
  }

  .banner-strip .css-flower:nth-child(n+5) {
    display: none;
  }

  .burger-nav {
    padding: 12px 18px;
  }

  .hero-text {
    padding: 54px 20px 0;
  }

  .metric-inner {
    flex-wrap: wrap;
  }

  .metric {
    flex: 1 1 50%;
    border-right: none;
    padding: 18px 10px;
  }

  .metric:nth-child(2) {
    border-right: none;
  }

  .metric:nth-child(1),
  .metric:nth-child(2) {
    border-bottom: 1px solid #C9A8CB;
  }

  .service-item {
    padding: 30px 26px;
  }

  .svc-num {
    top: 24px;
    right: 26px;
    font-size: 44px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 24px;
  }

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

  .hero-ctas .btn {
    text-align: center;
  }

  .footer-links {
    gap: 18px;
  }
}
