:root {
  --coral: #ff6b4a;
  --coral-deep: #e84a2e;
  --teal: #2ec4b6;
  --teal-deep: #1a9e92;
  --sun: #ffb703;
  --ink: #1c2430;
  --ink-soft: #3d4a5c;
  --paper: #fff8f0;
  --paper-2: #ffe8d6;
  --mist: #e8f7f5;
  --line: rgba(28, 36, 48, 0.12);
  --shadow: 0 18px 40px rgba(28, 36, 48, 0.12);
  --radius: 1.25rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --max: 72rem;
  --header-h: 4.25rem;
}

*,
*::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, 107, 74, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(46, 196, 182, 0.3), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 183, 3, 0.22), transparent 55%),
    linear-gradient(165deg, #fff8f0 0%, #ffeede 45%, #eaf8f6 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 650;
  color: var(--ink);
  margin: 0 0 0.6em;
}

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

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

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

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Dynamic shapes */
.shape-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}

.blob-a {
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  top: -4rem;
  right: -3rem;
  animation-delay: -2s;
}

.blob-b {
  width: 14rem;
  height: 14rem;
  background: linear-gradient(160deg, var(--teal), #7be0d4);
  bottom: 10%;
  left: -4rem;
  animation-delay: -5s;
}

.blob-c {
  width: 9rem;
  height: 9rem;
  background: linear-gradient(45deg, var(--sun), #ffe08a);
  top: 40%;
  right: 12%;
  opacity: 0.4;
  animation-duration: 18s;
}

@keyframes drift {
  from {
    transform: translate(0, 0) rotate(0deg);
  }
  to {
    transform: translate(1.5rem, 2rem) rotate(12deg);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-0.6rem);
  }
}

.reveal {
  animation: rise-in 0.8s ease both;
}

.reveal-delay {
  animation: rise-in 0.9s ease 0.15s both;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

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

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, var(--coral), var(--teal) 55%, var(--sun));
  box-shadow: 0 6px 16px rgba(255, 107, 74, 0.35);
  animation: float-y 3.5s ease-in-out infinite alternate;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: transparent;
  border-radius: 0.65rem;
  padding: 0.4rem 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--coral-deep);
}

.nav-cta {
  background: linear-gradient(120deg, var(--coral), #ff8f6b);
  color: #fff !important;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 107, 74, 0.35);
}

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

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

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 248, 240, 0.97);
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    gap: 0.75rem;
  }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--coral), var(--sun));
  color: #1c2430;
  box-shadow: 0 10px 24px rgba(255, 107, 74, 0.35);
}

.btn-secondary {
  background: #fff;
  border-color: var(--teal);
  color: var(--teal-deep);
}

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

/* Sections */
.section {
  position: relative;
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 40rem;
}

/* Hero variants */
.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 0.4rem;
  background: linear-gradient(110deg, var(--coral-deep), var(--teal-deep) 45%, #c47a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  max-width: 22ch;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  min-height: 18rem;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% auto;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, var(--teal), transparent);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Offer strip */
.offer-strip {
  display: grid;
  gap: 1rem;
}

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

.offer-item {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.offer-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--teal), var(--sun));
}

.offer-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

/* Media panels */
.panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.panel-accent {
  background: linear-gradient(145deg, rgba(46, 196, 182, 0.18), rgba(255, 183, 3, 0.18));
}

.split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.15);
  color: var(--coral-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

/* Service / blog lists */
.card-grid {
  display: grid;
  gap: 1.35rem;
}

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

  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.entry {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

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

.entry img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.entry-body {
  padding: 1.15rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

.entry-meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 700;
}

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

.list-clean li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

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

/* Pricing */
.rate-block {
  display: grid;
  gap: 1rem;
}

.rate-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

@media (min-width: 700px) {
  .rate-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
  }
}

.rate-row strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* Reviews */
.quote {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border-left: 5px solid var(--coral);
  box-shadow: var(--shadow);
}

.quote p {
  font-size: 1.05rem;
  color: var(--ink);
}

.quote footer {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.quote-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-grid .span-2 {
    grid-column: 1 / -1;
  }
}

/* Forms */
.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-weight: 800;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 100%;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.25);
}

.form .error {
  color: var(--coral-deep);
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 1.2em;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  font-weight: 700;
  display: none;
}

.form-status.is-success {
  display: block;
  background: rgba(46, 196, 182, 0.2);
  color: var(--teal-deep);
}

.form-status.is-error {
  display: block;
  background: rgba(255, 107, 74, 0.18);
  color: var(--coral-deep);
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-block {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(232, 247, 245, 0.9));
  border: 1px solid var(--line);
}

.contact-block h2 {
  font-size: 1.15rem;
}

.address-verbatim,
.phone-verbatim {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.95rem;
  color: var(--ink);
}

/* Legal */
.legal {
  max-width: 48rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

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

table.cookies {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

table.cookies th,
table.cookies td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

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

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, transparent, rgba(28, 36, 48, 0.06));
  border-top: 1px solid var(--line);
}

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

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

.site-footer h2 {
  font-size: 1.05rem;
}

.footer-nav {
  display: grid;
  gap: 0.4rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-soft);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 40rem;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(28, 36, 48, 0.96);
  color: #fff8f0;
  box-shadow: 0 20px 40px rgba(28, 36, 48, 0.35);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise-in 0.45s ease both;
}

.cookie-banner p {
  color: #ffe8d6;
  margin-bottom: 0.9rem;
}

.cookie-banner a {
  color: var(--sun);
}

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

.cookie-actions .btn {
  border: none;
}

.cookie-actions .btn-accept {
  background: linear-gradient(120deg, var(--teal), #7be0d4);
  color: var(--ink);
}

.cookie-actions .btn-reject {
  background: transparent;
  border: 2px solid rgba(255, 248, 240, 0.45);
  color: #fff8f0;
}

/* 404 */
.page-404 {
  text-align: center;
  padding: 5rem 0;
}

.page-404 h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  background: linear-gradient(110deg, var(--coral), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Process timeline (custom page) */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(135deg, var(--sun), var(--coral));
}

.prose-wide {
  max-width: 46rem;
}

.stack-md > * + * {
  margin-top: 1rem;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}
