@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Mulish:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

a { color: var(--accent); }

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav .brand img { height: 30px; width: auto; display: block; }
.nav .links { display: flex; align-items: center; gap: 28px; }
.nav .links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.nav .links a:hover { color: var(--accent); }
.nav .links a.btn-nav { padding: 10px 20px; font-size: 14px; color: #fff; }
.nav .links a.btn-nav:hover { color: #fff; }

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero .mark {
  height: 84px;
  width: auto;
  margin-bottom: 8px;
  opacity: 0.92;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  margin: 0 0 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero p.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero .petal-bg {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 360px;
  height: 360px;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--hairline-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Section shell */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 44px; }
.section-head .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 34px);
  margin: 0 0 12px;
}
.section-head p { color: var(--ink-soft); margin: 0; font-size: 16px; }

/* Value props */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.value-card .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
}
.value-card p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Examples */
.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.example-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 24px 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.example-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 8px;
}
.example-card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* Miniature phone mockups — representative palette/layout, not real client data */
.phone {
  width: 130px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 14px 12px;
  background: var(--phone-bg);
}
.phone-bar {
  height: 26px;
  border-radius: 8px;
  background: var(--phone-accent);
  margin-bottom: 10px;
}
.phone-row {
  height: 14px;
  border-radius: 6px;
  background: var(--phone-surface);
  margin-bottom: 8px;
}
.phone-row.short { width: 65%; }
.phone-chips { display: flex; gap: 6px; margin-top: 12px; }
.phone-chips span {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--phone-surface);
}
.phone.coastal { --phone-bg: #E9F1F2; --phone-accent: #3F7E99; --phone-surface: #FFFFFF; }
.phone.colorblock { --phone-bg: #FFE9F1; --phone-accent: #F49F51; --phone-surface: #FFFFFF; }
.phone.clay { --phone-bg: #F6ECE2; --phone-accent: #B2925F; --phone-surface: #FFFFFF; }

/* Contact */
.contact {
  background: var(--accent-bg);
  border-radius: 28px;
  padding: 56px 40px;
  text-align: center;
}
.contact h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(24px, 3vw, 30px); margin: 0 0 12px; }
.contact p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 28px; }

/* Footer */
footer {
  padding: 36px 0 48px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
}
footer .brand-line {
  font-family: var(--font-serif);
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 6px;
}

@media (max-width: 760px) {
  .values, .examples { grid-template-columns: 1fr; }
  .nav .links { gap: 18px; }
  .contact { padding: 40px 24px; border-radius: var(--radius); }
}
