:root {
  --ink: #1a2332;
  --ink-soft: #3d4a5c;
  --paper: #fff8f2;
  --paper-deep: #ffe8d6;
  --coral: #ff6b4a;
  --coral-deep: #e8482a;
  --amber: #ffb020;
  --teal: #2ec4b6;
  --teal-deep: #1a9e93;
  --cream: #fff1e6;
  --white: #ffffff;
  --line: rgba(26, 35, 50, 0.12);
  --shadow: 0 18px 40px rgba(232, 72, 42, 0.12);
  --radius: 1.25rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --shell: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(255, 176, 32, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(46, 196, 182, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 107, 74, 0.18), transparent 55%),
    linear-gradient(165deg, #fff8f2 0%, #ffe8d6 45%, #e8faf7 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 242, 0.85);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--coral), var(--amber) 50%, var(--teal));
  box-shadow: 0 6px 16px rgba(255, 107, 74, 0.35);
  animation: pulse-mark 4s ease-in-out infinite;
}

@keyframes pulse-mark {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(3deg); }
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-nav a:hover {
  color: var(--coral-deep);
}

.nav-cta {
  background: linear-gradient(120deg, var(--coral), var(--amber));
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--white) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--coral), var(--amber));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 107, 74, 0.32);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid rgba(46, 196, 182, 0.45);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero & shapes */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5rem);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 40% 60% 55% 45%;
  filter: blur(0.5px);
  animation: drift 14s ease-in-out infinite;
}

.shape-a {
  width: 18rem;
  height: 18rem;
  background: linear-gradient(145deg, rgba(255, 107, 74, 0.45), rgba(255, 176, 32, 0.25));
  top: -4rem;
  right: -3rem;
}

.shape-b {
  width: 12rem;
  height: 12rem;
  background: linear-gradient(200deg, rgba(46, 196, 182, 0.4), rgba(255, 176, 32, 0.2));
  bottom: 10%;
  left: -2rem;
  animation-delay: -4s;
}

.shape-c {
  width: 7rem;
  height: 7rem;
  background: rgba(255, 176, 32, 0.5);
  top: 40%;
  right: 18%;
  animation-delay: -7s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -18px) rotate(8deg); }
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 36rem;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  background: linear-gradient(115deg, var(--coral-deep), #c45a12 40%, var(--teal-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fade-up 0.8s ease both;
}

.hero-lead {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 0.75rem;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero-support {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 34rem;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 16rem;
  box-shadow: var(--shadow);
  animation: fade-up 0.9s ease 0.15s both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 420px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 107, 74, 0.15), transparent 50%, rgba(46, 196, 182, 0.2));
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 880px) {
  .hero-panel {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.band {
  background: rgba(255, 255, 255, 0.55);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .split-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Offer / service listings — interaction containers */
.offer-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.offer-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 241, 230, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26, 35, 50, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.offer-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.offer-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.offer-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.offer-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--teal-deep);
  font-weight: 600;
}

/* Evidence / quotes */
.quote-stack {
  display: grid;
  gap: 1.25rem;
}

.quote {
  background: var(--white);
  border-left: 5px solid var(--coral);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.05);
}

.quote p {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.quote footer {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.story-block {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(255, 176, 32, 0.15));
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.5rem;
}

.story-block h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

/* Page heroes (inner) */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  margin-top: 2.25rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.4rem;
}

.detail-hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-hero img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

@media (min-width: 800px) {
  .detail-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--teal));
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 1rem 1.15rem 1rem 3.5rem;
  position: relative;
  border: 1px solid var(--line);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--amber));
}

.rate-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}

.rate-block h3 {
  margin: 0 0 0.4rem;
}

.rate-block .price {
  font-weight: 700;
  color: var(--coral-deep);
  font-size: 1.15rem;
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-teaser {
  display: grid;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}

.blog-teaser:hover {
  transform: translateY(-3px);
  color: inherit;
}

.blog-teaser img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-teaser-body {
  padding: 0 1.25rem 1.35rem;
}

.blog-teaser time {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (min-width: 720px) {
  .blog-teaser {
    grid-template-columns: 240px 1fr;
  }

  .blog-teaser img {
    height: 100%;
    min-height: 160px;
  }
}

.article-body p {
  font-size: 1.05rem;
}

.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  box-shadow: var(--shadow);
}

.article-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 1.1em;
}

.form-status {
  margin: 0;
  font-weight: 600;
}

.form-status.is-success {
  color: var(--teal-deep);
}

.form-status.is-error {
  color: var(--coral-deep);
}

.contact-aside {
  background: linear-gradient(145deg, rgba(255, 107, 74, 0.12), rgba(46, 196, 182, 0.18));
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-aside h2 {
  font-family: var(--font-display);
  margin-top: 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}

th,
td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.15), rgba(46, 196, 182, 0.15));
}

.faq details {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 0.85rem;
  padding: 0.85rem 1.1rem;
  margin-bottom: 0.65rem;
  border: 1px solid var(--line);
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 2rem 0 0;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 107, 74, 0.9), rgba(255, 176, 32, 0.85) 50%, rgba(46, 196, 182, 0.9));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  color: var(--white);
}

.cta-band p {
  margin: 0 auto 1.25rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--coral-deep);
  box-shadow: none;
}

.cta-band .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: #1a2332;
  color: rgba(255, 248, 242, 0.88);
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: #7fe0d6;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1.4fr 1fr 0.8fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
  color: var(--white);
}

.footer-tag,
.footer-address {
  margin: 0;
  font-size: 0.95rem;
}

.footer-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--amber);
  margin: 0 0 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 248, 242, 0.65);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(26, 35, 50, 0.96);
  color: var(--cream);
  padding: 1rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 18rem;
  font-size: 0.95rem;
}

.cookie-inner a {
  color: var(--amber);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.illustration-strip {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.blob-illus {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 42% 58% 60% 40%;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  opacity: 0.85;
  animation: drift 10s ease-in-out infinite;
}

.blob-illus:nth-child(2) {
  background: linear-gradient(135deg, var(--amber), var(--teal));
  animation-delay: -3s;
  border-radius: 58% 42% 38% 62%;
}

.blob-illus:nth-child(3) {
  background: linear-gradient(135deg, var(--teal), var(--coral));
  animation-delay: -6s;
}

.error-page {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0 0 0.5rem;
  background: linear-gradient(120deg, var(--coral), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 242, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    position: relative;
  }
}
