@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/dm-sans-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/fraunces-latin-ext-500-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-latin-600-normal.woff2") format("woff2");
}

:root {
  --green: #1b3d2f;
  --green-deep: #3a5f4e;
  --green-footer: #2f4f41;
  --copper: #a05620;
  --copper-hover: #86481a;
  --copper-soft: #c4783b;
  --cream: #f6f1e8;
  --paper: #fffbf5;
  --ink: #1a1a1a;
  --muted: #454e48;
  --line: rgba(27, 61, 47, 0.14);
  --shadow: 0 18px 40px rgba(18, 38, 29, 0.08);
  --radius: 18px;
  --max: 1120px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 16px);
}

section[id] {
  scroll-margin-top: calc(var(--header) + 16px);
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip:focus {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  left: 12px;
  top: 12px;
  z-index: 200;
  background: var(--paper);
  color: var(--green);
  padding: 10px 14px;
  border-radius: 8px;
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(27, 61, 47, 0.06);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--green);
  position: relative;
}

.nav a.btn-copper {
  color: #fff;
  background: var(--copper);
}

.nav a.btn-copper:hover,
.nav a.btn-copper[aria-current="page"] {
  color: #fff;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]:not(.btn)::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"] {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 600;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--copper);
  color: #fff;
}

.btn-copper:hover {
  background: var(--copper-hover);
  box-shadow: 0 10px 22px rgba(196, 120, 59, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn-light {
  background: var(--paper);
  color: var(--green);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  color: var(--green);
  font-weight: 600;
  min-height: 44px;
  min-width: 44px;
  padding: 8px 12px;
}

.hero {
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 420px;
  background: radial-gradient(circle, rgba(160, 86, 32, 0.18), transparent 65%);
  pointer-events: none;
  animation: glow-drift 14s ease-in-out infinite;
}

@keyframes glow-drift {
  0%,
  100% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 4%); }
}

.kicker {
  color: var(--copper);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

h1,
h2,
h3,
.logo {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
  line-height: 1.14;
  margin: 0 0 18px;
  color: var(--green);
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.lead {
  font-size: 1.15rem;
  max-width: 42rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 40rem;
}

.hero-meta strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--green);
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.wind-line {
  margin-top: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent 70%);
  transform-origin: left;
  animation: wind-draw 2.4s var(--ease) both;
}

@keyframes wind-draw {
  from { transform: scaleX(0.15); opacity: 0.2; }
  to { transform: scaleX(1); opacity: 1; }
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--green-deep);
  color: var(--cream);
}

.section-dark h2,
.section-paper h2 {
  color: inherit;
}

.section-paper {
  background: var(--paper);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green);
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.section-intro {
  max-width: 40rem;
  color: var(--muted);
  margin: 0 0 36px;
}

.section-dark .section-intro {
  color: #f3eee5;
}

.grid-3,
.grid-2,
.places {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.portrait {
  margin: 0;
  max-width: 280px;
  justify-self: end;
}

.portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(18, 38, 29, 0.12);
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 1.28rem;
  color: var(--green);
}

.card p:not(.price) {
  color: var(--muted);
  margin: 0;
}

.price {
  color: var(--copper);
  font-weight: 700;
  margin: 0;
  font-size: 0.9rem;
}

.cards-equal {
  align-items: stretch;
}

.cards-equal .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.step-card {
  padding: 26px;
}

.step-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--copper);
  margin: 0 0 14px;
}

.step-card h3 {
  margin-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--green);
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--copper);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 10px;
  left: 4px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 4px;
  left: 10px;
}

.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  max-width: 46rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 245, 0.72);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.hero-split h1 {
  line-height: 1.22;
  max-width: 11ch;
}

.hero-split .lead {
  max-width: 34rem;
}

.hero-visual {
  position: relative;
  min-height: 340px;
  padding-top: 36px;
}

.device-browser {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-chrome {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(27, 61, 47, 0.06);
  border-bottom: 1px solid var(--line);
}

.device-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27, 61, 47, 0.22);
}

.device-screen {
  padding: 18px;
  min-height: 220px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.mini-nav {
  height: 8px;
  width: 42%;
  border-radius: 99px;
  background: var(--green);
  margin-bottom: 18px;
}

.mini-hero {
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(196, 120, 59, 0.28), rgba(27, 61, 47, 0.12));
  margin-bottom: 14px;
}

.mini-line,
.mini-line.short {
  height: 8px;
  border-radius: 99px;
  background: var(--line);
  margin-bottom: 8px;
}

.mini-line.short {
  width: 62%;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.mini-cards i {
  height: 42px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: block;
}

.device-phone {
  position: absolute;
  right: 8%;
  bottom: -18px;
  width: 112px;
  height: 210px;
  padding: 10px 8px;
  border-radius: 22px;
  background: var(--green);
  box-shadow: 0 16px 32px rgba(18, 38, 29, 0.22);
}

.phone-notch {
  width: 36px;
  height: 6px;
  border-radius: 99px;
  background: rgba(246, 241, 232, 0.35);
  margin: 0 auto 10px;
}

.phone-screen {
  height: calc(100% - 20px);
  border-radius: 14px;
  background: var(--cream);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.phone-screen strong {
  display: block;
  font-size: 0.62rem;
  text-align: center;
  background: var(--copper);
  color: #fff;
  border-radius: 99px;
  padding: 8px 0;
  font-family: "DM Sans", sans-serif;
}

.phone-screen em {
  height: 8px;
  border-radius: 99px;
  background: var(--line);
  display: block;
}

.seo-card {
  padding: 26px;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(27, 61, 47, 0.08);
  flex-shrink: 0;
}

.price-pill {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--copper);
  background: rgba(196, 120, 59, 0.12);
  border: 1px solid rgba(196, 120, 59, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
}

.card-more {
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

.card-more:hover {
  color: var(--copper);
}

.seo-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.seo-note {
  padding: 8px 2px 0;
}

.seo-note h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin: 0 0 8px;
}

.seo-note p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  background: linear-gradient(160deg, #fff 0%, var(--cream) 55%, rgba(196, 120, 59, 0.1) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.cta-panel h2 {
  margin: 0 0 10px;
}

.cta-panel > div p {
  margin: 0;
  color: var(--muted);
}

.cta-panel textarea {
  min-height: 110px;
}

.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.cards-2 .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.places {
  grid-template-columns: repeat(3, 1fr);
}

.place {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(246, 241, 232, 0.12);
  border: 1px solid rgba(246, 241, 232, 0.22);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.place:hover {
  transform: translateY(-3px);
  background: rgba(246, 241, 232, 0.2);
}

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--green);
  color: var(--cream);
  border-radius: 28px;
  padding: 36px;
}

.cta-band h2 {
  color: var(--cream);
  margin: 0 0 8px;
}

.cta-band p {
  margin: 0;
  color: rgba(246, 241, 232, 0.8);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea,
select {
  font: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 61, 47, 0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
}

.cta-panel > div p.direct-contact {
  margin-top: 22px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-ok,
.form-err {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.form-ok {
  color: var(--green);
}

.form-err {
  color: var(--copper);
}

.consent {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--muted);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--green);
}

.consent a {
  color: var(--green);
}

.site-footer {
  background: var(--green-footer);
  color: var(--cream);
  padding: 40px 0 28px;
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.fine {
  color: #f4efe6;
  opacity: 1;
  font-size: 0.9rem;
  margin: 0;
}

.legal {
  max-width: 46rem;
}

.legal h1 {
  max-width: none;
  font-size: 2.2rem;
}

.legal h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.legal a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.8s var(--ease) forwards;
}

.reveal-d1 { animation-delay: 0.08s; }
.reveal-d2 { animation-delay: 0.16s; }
.reveal-d3 { animation-delay: 0.26s; }
.reveal-d4 { animation-delay: 0.36s; }

.inview {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.inview.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    z-index: 20;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .grid-3,
  .places,
  .grid-2,
  .hero-meta,
  .cards-2,
  .hero-split,
  .seo-notes,
  .cta-panel,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
    max-width: 420px;
    padding-top: 8px;
  }

  .device-phone {
    right: 12px;
    bottom: -8px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .portrait {
    max-width: 220px;
    justify-self: start;
  }

  h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .inview {
    opacity: 1;
    transform: none;
  }
}
