:root {
  --cream: #F6F4F0;
  --cream-deep: #EAEEF2;
  --ink: #28323B;
  --ink-soft: #525E68;
  --sage: #5B8FC4;
  --sage-dark: #3D6A99;
  --terracotta: #D88B6E;
  --terracotta-dark: #B66B4F;
  --white: #FFFFFF;
  --border: rgba(40, 50, 59, 0.12);
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1.2; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1rem; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 0.8rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 24px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.main-nav a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--sage-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* HERO */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-em {
  color: var(--sage);
  font-style: italic;
}

.hero-lead {
  font-size: 1.15rem;
  max-width: 480px;
  margin-top: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.hero-visual { display: flex; justify-content: center; }

.wave-art { width: 100%; max-width: 360px; }
.wa-bg { fill: var(--cream-deep); }
.wa-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
}
.wa-line-1 { stroke: var(--sage); }
.wa-line-2 { stroke: var(--terracotta); opacity: 0.85; }
.wa-line-3 { stroke: var(--sage-dark); opacity: 0.6; }

/* SECTIONS */
.section { padding: 88px 0; }
.section-tinted { background: var(--cream-deep); }

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 48px;
}

.section-body { max-width: 620px; }
.section-body p { font-size: 1.05rem; }

.section-head { margin-bottom: 48px; max-width: 560px; }

.link-arrow {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--sage-dark);
  border-bottom: 1.5px solid var(--sage-dark);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.link-arrow:hover { color: var(--terracotta-dark); border-color: var(--terracotta-dark); }

.services-more { margin-top: 36px; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--sage);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; margin: 0; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-lead { font-size: 1.05rem; max-width: 420px; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.ci-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.ci-value { font-size: 1rem; color: var(--ink); }
.ci-value a { text-decoration: none; }
.ci-value a:hover { color: var(--sage); }

.instagram-link {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  color: var(--terracotta-dark);
  border-bottom: 1.5px solid var(--terracotta-dark);
  padding-bottom: 2px;
}

.contact-map {
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--border);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.footer-inner a { text-decoration: none; }
.footer-inner a:hover { color: var(--sage-dark); }

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 240px; margin: 0 auto; }
  .section-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
