:root {
  --bg: #fbf7ef;
  --surface: #ffffff;
  --deep: #123c38;
  --deep-2: #0d2f2c;
  --border: rgba(18, 60, 56, 0.12);
  --text: #16302d;
  --muted: #5b6f6c;
  --accent: #0f6e63;
  --accent-bright: #1a9c8c;
  --accent-soft: rgba(15, 110, 99, 0.09);
  --sun: #f2a541;
  --coral: #e8704f;
  --radius: 16px;
  --font-display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --shadow: 0 16px 40px rgba(18, 60, 56, 0.1);
  --shadow-sm: 0 6px 18px rgba(18, 60, 56, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  z-index: 100;
  border-radius: 6px;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
}

.wrap {
  width: min(1140px, calc(100% - 3rem));
  margin-inline: auto;
}

/* ============ header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  background: var(--accent-bright);
}

/* ============ hero ============ */

.hero {
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 90% 70% at 85% 0%, rgba(242, 165, 65, 0.14), transparent 60%),
    radial-gradient(ellipse 70% 60% at 0% 20%, rgba(15, 110, 99, 0.07), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(15, 110, 99, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 1.15rem;
}

.accent-text {
  color: var(--accent);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-islands {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.hero-islands li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
}

.hero-art {
  position: relative;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}

.hero-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -1.25rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 0.92rem;
}

.hero-card span:not(.hero-card-dot) {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 4px rgba(26, 156, 140, 0.18);
  flex-shrink: 0;
}

/* ============ wave divider ============ */

.wave-divider {
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: clamp(36px, 5vw, 70px);
  display: block;
}

/* ============ sections ============ */

.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section-surface {
  background: var(--surface);
}

.kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--coral);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.kicker-light {
  color: var(--sun);
}

.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 1.1rem;
}

.section-title {
  margin-bottom: 2.25rem !important;
}

.title-light {
  color: #fff;
}

/* ============ about ============ */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 58ch;
}

.about-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.about-stats li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}

.stat-figure {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
  min-width: 5.2rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============ services ============ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ============ process ============ */

.section-deep {
  background:
    radial-gradient(ellipse 80% 90% at 90% 10%, rgba(26, 156, 140, 0.25), transparent 55%),
    linear-gradient(160deg, var(--deep), var(--deep-2));
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}

.process-steps li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--sun);
  color: var(--deep-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.95rem;
}

.process-steps h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.95rem;
}

/* ============ pricing ============ */

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.pricing-copy {
  color: var(--muted);
  margin: 0 0 1.6rem;
  max-width: 54ch;
}

.pricing-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.pricing-points li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 0.95rem 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}

.pricing-points strong {
  color: var(--text);
}

/* ============ contact ============ */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  max-width: 46ch;
}

.contact-copy a {
  color: var(--accent);
  font-weight: 600;
}

.contact-art {
  width: 100%;
  max-width: 320px;
  margin-top: 1.5rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.inquiry-form input,
.inquiry-form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  resize: vertical;
  min-height: 2.75rem;
}

.inquiry-form textarea {
  min-height: 120px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.15rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ============ buttons ============ */

.btn {
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.1s ease, background 0.15s ease, opacity 0.15s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover:not(:disabled) {
  background: var(--accent-bright);
}

.btn.primary:active:not(:disabled) {
  transform: scale(0.98);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(15, 110, 99, 0.35);
}

.btn.ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.success {
  color: #147a4a;
}

.form-status.error {
  color: #b3402a;
}

.form-iframe {
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
  position: absolute;
}

/* ============ footer ============ */

.site-footer {
  background: var(--deep-2);
  padding: 2rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ responsive ============ */

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-self: stretch;
    max-width: 560px;
    margin-inline: auto;
  }

  .hero-card {
    left: 1rem;
  }
}

@media (max-width: 640px) {
  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}
