:root {
  --rose-900: #7d4a5b;
  --rose-700: #b06b82;
  --rose-500: #d7a4b4;
  --rose-300: #efd5dc;
  --sand-100: #ffffff;
  --sand-200: #f5efed;
  --ink-900: #2a1c22;
  --ink-600: #6a4f59;
  --line: #e8d9d5;
  --shadow: rgba(42, 28, 34, 0.12);
  --font-display: "Garamond", "Palatino Linotype", "Book Antiqua", serif;
  --font-sans: "Segoe UI", "Helvetica Neue", "Arial", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: #ffffff;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 24px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6vw;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  backdrop-filter: blur(6px);
}

.nav img {
  width: 280px;
  height: auto;
  margin: -40px 0;
  filter: drop-shadow(0 2px 6px rgba(42, 28, 34, 0.15));
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-600);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hero {
  min-height: 92vh;
  padding: 120px 8vw 90px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4)),
    url("/ohsopretty_model.png");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  gap: 0;
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-900);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  margin: 14px 0 18px;
  line-height: 1.02;
  font-weight: 400;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
  color: var(--ink-600);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--rose-500), var(--rose-700));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  border: none;
  box-shadow: 0 16px 28px rgba(176, 107, 130, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(176, 107, 130, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(176, 107, 130, 0.4);
  color: var(--rose-900);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--rose-900);
  background: rgba(215, 164, 180, 0.2);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 80px 8vw;
  background: var(--sand-100);
}

.section--muted {
  background: linear-gradient(180deg, var(--sand-100), var(--sand-200));
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 20px 0 24px;
  color: var(--ink-900);
  font-weight: 400;
  line-height: 1.15;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-600);
  max-width: 720px;
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 38px var(--shadow);
  transition: all 0.3s ease;
}

.panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 48px rgba(42, 28, 34, 0.16);
  border-color: var(--rose-300);
}

.panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.3;
}

.panel p { margin: 0; color: var(--ink-600); }

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 28px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-step {
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.timeline-step strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-900);
  margin-bottom: 6px;
}

.quote-band {
  padding: 70px 8vw;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  max-width: 900px;
  margin: 0;
  color: var(--ink-900);
  font-weight: 400;
}

.quote span {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 18px;
  color: var(--rose-900);
}

.breadcrumbs {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-700);
  margin-bottom: 20px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(215, 164, 180, 0.15);
  border-radius: 999px;
}

.page-header {
  padding: 90px 8vw 60px;
  background: linear-gradient(135deg,
    rgba(239, 213, 220, 0.35) 0%,
    rgba(245, 239, 237, 0.6) 50%,
    rgba(255, 255, 255, 0.9) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--rose-700) 0%,
    var(--rose-500) 50%,
    transparent 100%);
}

.footer-contact {
  border-top: 1px solid var(--line);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  margin: 0 0 20px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.1;
}

.page-header p {
  color: var(--ink-600);
  max-width: 760px;
  font-size: 19px;
  line-height: 1.75;
  font-weight: 400;
}

.contact {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
}

input, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: var(--font-sans);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--rose-500);
  box-shadow: 0 0 0 3px rgba(215, 164, 180, 0.1);
}

textarea { min-height: 120px; resize: vertical; }

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  padding: 24px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(42, 28, 34, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(42, 28, 34, 0.1);
  border-color: var(--rose-300);
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink-900);
  font-weight: 400;
}

.faq-item p {
  margin: 0;
  color: var(--ink-600);
  line-height: 1.7;
}

.blog-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 32px;
}

.blog-card,
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(42, 28, 34, 0.06);
  transition: all 0.3s ease;
}

.blog-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(42, 28, 34, 0.12);
  border-color: var(--rose-300);
}

.blog-card h3,
.testimonial-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 8px 0 12px;
  color: var(--ink-900);
  font-weight: 400;
  line-height: 1.3;
}

.blog-card span,
.testimonial-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose-700);
}

.card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-600);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 14px 0 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--ink-900);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 900px) {
  .nav {
    padding: 8px 4vw;
  }

  .nav img {
    width: 180px;
    margin: -20px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links a {
    padding: 16px 6vw;
    border-bottom: 1px solid rgba(232, 217, 213, 0.5);
    font-size: 12px;
  }

  .nav-links a:hover {
    background: rgba(215, 164, 180, 0.1);
  }

  .hero { padding-top: 50px; }
  .page-header { padding: 60px 7vw 40px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 7vw; }
  .hero-title { font-size: clamp(34px, 9vw, 54px); }
}

.footer {
  background: linear-gradient(180deg, var(--sand-200), #fff);
  border-top: 1px solid var(--line);
  padding: 60px 8vw 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  max-width: 1120px;
  margin: 0 auto 40px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(42, 28, 34, 0.1));
}

.footer-brand p {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 16px;
  color: var(--ink-900);
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: var(--ink-600);
  font-size: 15px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-col a:hover {
  color: var(--rose-700);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-light);
  font-size: 13px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
