:root {
  --ink: #1a2433;
  --ink-soft: #3d4a5c;
  --paper: #fff8f3;
  --paper-2: #ffffff;
  --coral: #ff6b4a;
  --amber: #f59e0b;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --blush: #ffd4c8;
  --mint: #c8f0e8;
  --line: rgba(26, 36, 51, 0.12);
  --shadow: 0 18px 40px rgba(255, 107, 74, 0.12);
  --radius: 1.25rem;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --max: 72rem;
}

*,
*::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(13, 148, 136, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(245, 158, 11, 0.18), transparent 55%),
    var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

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

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

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

.inline-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.75rem 1rem;
  margin: 0;
  text-align: center;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  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) 45%, var(--teal));
  box-shadow: 0 8px 18px rgba(255, 107, 74, 0.35);
  animation: bob 4s ease-in-out infinite;
}

.brand-text {
  background: linear-gradient(120deg, var(--ink) 40%, var(--teal-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.35rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

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

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 248, 243, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
  }

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.8rem 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), #ff8f3c 55%, var(--amber));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.3);
}

.btn-secondary {
  background: linear-gradient(120deg, var(--teal), #14b8a6);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

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

.hero-panel {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: end;
  min-height: min(78vh, 40rem);
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 0.5rem);
  background:
    linear-gradient(145deg, rgba(255, 107, 74, 0.92), rgba(245, 158, 11, 0.75) 42%, rgba(13, 148, 136, 0.88)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&h=1000&fit=crop") center/cover;
  color: #fff;
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(180deg, transparent 35%, rgba(26, 36, 51, 0.45));
  z-index: -1;
  border-radius: inherit;
}

.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-blob {
  width: 14rem;
  height: 14rem;
  border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%;
  background: rgba(255, 255, 255, 0.18);
  top: -2rem;
  right: 8%;
  animation: morph 10s ease-in-out infinite;
}

.shape-ring {
  width: 7rem;
  height: 7rem;
  border: 4px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  bottom: 12%;
  right: 18%;
  animation: spin 22s linear infinite;
}

.shape-slash {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(28deg);
  bottom: 18%;
  left: 8%;
  animation: bob 5s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  animation: rise 0.8s ease both;
}

.hero-kicker {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
  opacity: 0.92;
  animation: rise 0.7s ease 0.05s both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin: 0 0 1.5rem;
  max-width: 34rem;
  animation: rise 0.8s ease 0.12s both;
}

.hero-actions {
  animation: rise 0.8s ease 0.2s both;
}

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

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1,
.content-block h2,
.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}

.lede {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.05rem;
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.band {
  background: linear-gradient(120deg, rgba(255, 212, 200, 0.65), rgba(200, 240, 232, 0.7));
  border-radius: var(--radius);
  padding: 2rem;
}

.offer-grid,
.card-grid,
.blog-grid,
.review-grid {
  display: grid;
  gap: 1.25rem;
}

.offer-grid,
.card-grid,
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.service-card,
.story-card,
.note-card,
.price-block,
.step-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.service-card:hover,
.note-card:hover {
  transform: translateY(-4px);
}

.service-card img,
.note-card img,
.detail-hero img,
.about-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-body,
.note-body,
.step-card,
.price-block,
.story-card {
  padding: 1.25rem 1.35rem 1.5rem;
}

.service-card h3,
.note-card h3,
.step-card h3,
.price-block h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blush), var(--mint));
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

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

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

  .split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split.reverse .about-visual {
    order: -1;
  }

  .review-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.about-visual,
.detail-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-visual::after,
.detail-hero::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  right: -1rem;
  bottom: -1rem;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  border-radius: 1.5rem;
  transform: rotate(18deg);
  opacity: 0.85;
}

.quote {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  font-weight: 500;
}

.quote-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.reservation {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

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

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.prose,
.legal {
  max-width: 48rem;
}

.prose p,
.legal p,
.legal li {
  color: var(--ink-soft);
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
}

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

th {
  background: linear-gradient(120deg, var(--blush), var(--mint));
}

.form-panel {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.field {
  margin-bottom: 1rem;
}

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

textarea {
  min-height: 8rem;
  resize: vertical;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #dc2626;
}

.field-error {
  display: block;
  color: #b91c1c;
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 600;
}

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

.form-status.is-error {
  color: #b91c1c;
}

.contact-aside {
  background: linear-gradient(160deg, rgba(255, 107, 74, 0.12), rgba(13, 148, 136, 0.16));
  border-radius: var(--radius);
  padding: 1.5rem;
}

.list-check {
  padding-left: 1.1rem;
}

.list-check li {
  margin-bottom: 0.45rem;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(13, 148, 136, 0.1));
  border-top: 1px solid var(--line);
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.footer-tag,
.footer-address {
  color: var(--ink-soft);
  margin: 0;
}

.footer-label {
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

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

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

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(26, 36, 51, 0.94);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
}

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

.cookie-banner a {
  color: #fde68a;
}

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

.not-found {
  text-align: center;
  padding: 6rem 0;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 0;
  background: linear-gradient(120deg, var(--coral), var(--amber), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0 2rem;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-list > div {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes morph {
  0%,
  100% {
    border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%;
  }
  50% {
    border-radius: 58% 42% 40% 60% / 55% 58% 42% 45%;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
