:root {
  --ink: #142033;
  --ink-soft: #3a4a63;
  --paper: #fff8f2;
  --paper-2: #ffe8d6;
  --coral: #ff6b4a;
  --amber: #ffb347;
  --teal: #2ec4b6;
  --deep: #0f1b2d;
  --white: #ffffff;
  --line: rgba(20, 32, 51, 0.12);
  --shadow: 0 18px 50px rgba(15, 27, 45, 0.12);
  --radius: 1.25rem;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 179, 71, 0.35), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(46, 196, 182, 0.28), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(255, 107, 74, 0.16), transparent 35%),
    linear-gradient(165deg, #fff8f2 0%, #ffe9dc 42%, #e8fff9 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

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

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

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

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

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

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

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.55rem;
  background: conic-gradient(from 210deg, var(--coral), var(--amber), var(--teal), var(--coral));
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.18);
  animation: spin-slow 18s linear infinite;
}

.brand-text {
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 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(135deg, var(--coral), #ff8f4a);
  color: var(--white) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.28);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.28rem;
}

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

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

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

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

.hero-kicker {
  display: inline-block;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.hero h1,
.page-hero h1,
.section-title {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  background: linear-gradient(120deg, var(--deep) 10%, #c4472d 55%, var(--teal) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise-in 0.9s ease both;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
  animation: rise-in 1s ease 0.1s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  animation: rise-in 1.05s ease 0.18s both;
}

.hero-visual {
  position: relative;
  min-height: 18rem;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: float-in 1.1s ease 0.15s both;
}

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.45), transparent 70%);
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  filter: blur(0.2px);
  z-index: 0;
  pointer-events: none;
  animation: morph 12s ease-in-out infinite;
}

.shape-a {
  width: 14rem;
  height: 14rem;
  background: linear-gradient(140deg, rgba(255, 107, 74, 0.35), rgba(255, 179, 71, 0.25));
  top: -2rem;
  right: 8%;
}

.shape-b {
  width: 10rem;
  height: 10rem;
  background: linear-gradient(160deg, rgba(46, 196, 182, 0.4), rgba(255, 179, 71, 0.2));
  bottom: 1rem;
  left: 4%;
  animation-delay: -4s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.8rem 1.25rem;
  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(135deg, var(--coral), var(--amber));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 107, 74, 0.28);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

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

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

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

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.offer-band {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 232, 214, 0.85));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-band-copy {
  padding: 2rem;
}

.offer-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
}

.chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.15);
  color: #0f6e66;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

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

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.tile {
  position: relative;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.tile h3 {
  font-family: var(--font-display);
  margin: 0.4rem 0 0.6rem;
  font-size: 1.25rem;
}

.tile p {
  margin: 0;
  color: var(--ink-soft);
}

.tile-media {
  border-radius: 0.9rem;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16 / 10;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-pill {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 700;
  color: var(--deep);
}

.story-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 27, 45, 0.95), #1d3a4f);
  color: #f7fafc;
}

.story-panel p {
  margin: 0;
}

.story-panel cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.prose {
  max-width: 46rem;
}

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

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

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.detail-hero img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

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

.checklist 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));
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--teal));
}

.review-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.review-card .service-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0f6e66;
}

.review-card blockquote {
  margin: 0.7rem 0;
  font-size: 1.05rem;
}

.review-card footer {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.form-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.field {
  margin-bottom: 1rem;
}

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

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

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

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #d64545;
  outline-color: #d64545;
}

.field-error {
  color: #b42318;
  font-size: 0.88rem;
  min-height: 1.1rem;
  margin-top: 0.25rem;
}

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

.form-status.is-success {
  color: #0f6e66;
}

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

.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(46, 196, 182, 0.16), rgba(255, 179, 71, 0.2));
  border: 1px solid var(--line);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

table {
  width: 100%;
  border-collapse: collapse;
}

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

th {
  background: rgba(15, 27, 45, 0.04);
  font-family: var(--font-display);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a {
  color: #9ef0e5;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

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

.footer-tag,
.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-label {
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--amber);
}

.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 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(15, 27, 45, 0.96);
  color: #fff;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--coral), var(--amber), var(--teal)) 1;
  padding: 1rem 0;
}

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

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

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

.cookie-banner .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.legal-page .prose {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

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

.path-timeline {
  display: grid;
  gap: 1.25rem;
}

.path-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.path-week {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--coral);
}

.cta-band {
  margin: 1rem 0 0;
  padding: 2rem;
  border-radius: calc(var(--radius) + 0.2rem);
  background: linear-gradient(120deg, rgba(255, 107, 74, 0.92), rgba(255, 179, 71, 0.9) 55%, rgba(46, 196, 182, 0.88));
  color: var(--deep);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

.cta-band p {
  margin: 0;
  max-width: 32rem;
}

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

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
    transform: translateY(-12px) rotate(8deg);
  }
}

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

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

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

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

  .nav-cta {
    text-align: center;
  }

  .hero-stage,
  .offer-band,
  .detail-hero,
  .form-panel,
  .footer-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .path-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
