/* Tiara Travel — Serenity-inspired visual system (STYLE.md) */

:root {
  --bg: #fbfaf8;
  --bg-soft: #f3ede6;
  --surface: #ffffff;
  --ink: #1a1814;
  --ink-muted: #6b6258;
  --ink-faint: #9a9188;
  --accent: #8bada9;
  --accent-hover: #7a9c98;
  --accent-soft: #dceae7;
  --coral: #d4a99f;
  --peach: #d7e5e2;
  --lavender: #c9b8c8;
  --sky: #b7c9d4;
  --gold: #c4a35a;
  --line: #e6e0d8;
  --shadow: rgba(40, 30, 20, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius-hero: 44px;
  --radius-img: 28px;
  --max: 1200px;
  --pad: 24px;
  --page-inline: max(var(--pad), calc((100vw - var(--max)) / 2));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-family: var(--font-display);
}

p {
  margin: 0 0 1em;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 16px var(--page-inline);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, var(--peach) 0 28%, transparent 29%),
    radial-gradient(circle at 30% 62%, var(--coral) 0 18%, transparent 19%),
    radial-gradient(circle at 70% 62%, var(--lavender) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 70%, var(--accent-soft) 0 22%, transparent 23%);
  background-color: #f6ebe3;
}

.brand-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav {
  display: none;
  gap: 32px;
  font-size: 16px;
  font-weight: 600;
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.nav-drawer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 8px var(--page-inline) 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer a:not(.btn) {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  padding: 8px 0;
}

@media (min-width: 900px) {
  :root {
    --pad: 48px;
  }

  .nav {
    display: flex;
  }

  .nav-toggle,
  .nav-drawer {
    display: none !important;
  }

  .site-header {
    padding: 20px var(--page-inline);
  }
}

@media (min-width: 1100px) {
  :root {
    --pad: 64px;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  padding: 15px 28px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px var(--shadow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-nav {
  display: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
}

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

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
}

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

/* —— Hero —— */
.hero {
  width: 100%;
  margin: 0 auto;
  padding: 32px var(--page-inline) 72px;
  display: grid;
  gap: 40px;
}

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

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  box-shadow: 0 8px 24px var(--shadow);
}

.rating-chip .star {
  color: var(--gold);
  font-size: 13px;
}

.hero-support {
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-row p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.4;
}

.avatar-stack {
  display: flex;
  flex-shrink: 0;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-left: -10px;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar.a1 {
  background: var(--accent-soft);
}

.avatar.a2 {
  background: #f3ddd0;
}

.avatar.a3 {
  background: #e4e0ef;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 24px;
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-hero);
  overflow: visible;
}

.peach-blob {
  position: absolute;
  top: -6%;
  left: -10%;
  width: 58%;
  aspect-ratio: 1;
  background: radial-gradient(circle at 40% 40%, var(--peach), #c5d9d5 50%, transparent 72%);
  border-radius: 60% 40% 55% 45%;
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-hero);
  box-shadow: 0 16px 48px var(--shadow);
}

.float-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 30px var(--shadow);
  white-space: nowrap;
}

.tag-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tag-dot.coral {
  background: var(--coral);
}

.tag-dot.sage {
  background: var(--accent);
}

.tag-dot.lavender {
  background: var(--lavender);
}

.tag-top {
  top: 18px;
  right: 12px;
}

.tag-mid {
  bottom: 24px;
  left: 16px;
}

.hero-aside {
  position: relative;
  z-index: 1;
}

.aside-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-aside > p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.how-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

.play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral);
  position: relative;
  flex-shrink: 0;
}

.play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}

.aside-photo {
  position: relative;
  max-width: 280px;
}

.aside-photo img {
  border-radius: var(--radius-img);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 12px 36px var(--shadow);
}

.tag-aside {
  top: 12px;
  right: -8px;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(280px, 1fr) minmax(340px, 1.15fr) minmax(200px, 0.7fr);
    align-items: center;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 100px;
  }

  .hero-visual {
    display: contents;
  }

  .hero-photo-wrap {
    grid-column: 2;
  }

  .hero-aside {
    grid-column: 3;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 12px;
  }

  .aside-photo {
    max-width: 100%;
  }

  .hero-photo {
    aspect-ratio: 3 / 4;
    max-height: 640px;
  }
}

/* —— Sections —— */
.section {
  width: 100%;
  margin: 0 auto;
  padding: 64px var(--page-inline);
}

.section.section-soft {
  background: var(--bg-soft);
}

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

.section-head p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

@media (min-width: 900px) {
  .section {
    padding: 100px var(--page-inline);
  }
}

/* Why */
.why-grid {
  display: grid;
  gap: 32px;
}

.why-grid article h3 {
  margin-bottom: 10px;
}

.why-grid article p {
  margin: 0;
}

@media (min-width: 800px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* Cost table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 12px 40px var(--shadow);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.cost-table th,
.cost-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.cost-table th {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  background: color-mix(in srgb, var(--bg-soft) 70%, white);
}

.cost-table td:first-child {
  color: var(--ink);
  font-weight: 500;
}

.cost-table tr:last-child td {
  border-bottom: 0;
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-faint);
}

/* Partners */
.partners {
  display: grid;
  gap: 28px;
}

.partner {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.partner:last-child {
  border-bottom: 1px solid var(--line);
}

.partner-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 8px;
}

.partner-meta {
  font-size: 14px;
  color: var(--ink-faint);
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

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

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

  .partner {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
  }

  .partner:last-child {
    border-bottom: 0;
    border-left: 1px solid var(--line);
    padding-left: 48px;
  }
}

/* Experiences */
.experience-grid {
  display: grid;
  gap: 20px;
}

.exp {
  margin: 0;
  position: relative;
}

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

.exp figcaption {
  padding: 16px 4px 0;
}

.exp figcaption h3 {
  margin-bottom: 6px;
}

.exp figcaption p {
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .experience-grid {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }

  .exp.large {
    grid-row: span 2;
  }

  .exp.large img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 420px;
  }

  .exp.wide {
    grid-column: 1 / -1;
  }

  .exp.wide img {
    aspect-ratio: 21 / 8;
  }
}

/* Guide */
.guide-layout {
  display: grid;
  gap: 32px;
}

.guide-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  counter-reset: step;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 16px;
  counter-increment: step;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.guide-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  grid-row: span 2;
  line-height: 1.2;
}

.guide-steps strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
}

.guide-steps span {
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .guide-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }

  .guide-layout .section-head {
    margin-bottom: 0;
    position: sticky;
    top: 100px;
  }
}

/* Value */
.value-block {
  max-width: 48rem;
}

.value-block > p:first-of-type {
  font-size: 1.1rem;
}

.value-examples {
  display: grid;
  gap: 28px;
  margin: 36px 0 20px;
}

.value-examples h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.value-examples p {
  margin: 0;
}

@media (min-width: 700px) {
  .value-examples {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* FAQ */
.faq {
  max-width: 44rem;
  display: grid;
  gap: 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 36px 20px 0;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink-faint);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0 0 20px;
  padding-right: 24px;
  font-size: 0.95rem;
}

/* Final CTA */
.cta-final {
  text-align: center;
  padding-bottom: 80px;
}

.cta-inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 48px 28px;
  background: var(--surface);
  border-radius: 32px;
  box-shadow: 0 16px 48px var(--shadow);
}

.cta-inner h2 {
  margin-bottom: 12px;
}

.cta-inner > p {
  margin-bottom: 28px;
}

.cta-phone {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--ink-faint);
}

/* Footer */
.site-footer {
  width: 100%;
  margin: 0 auto;
  padding: 32px var(--page-inline) 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0 0 8px;
  font-size: 14px;
}

.site-footer strong {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer-note {
  font-size: 12px !important;
  color: var(--ink-faint);
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.settle .hero-photo {
  transform: scale(1.04);
  transition: transform 1.1s ease;
}

.settle.is-settled .hero-photo {
  transform: scale(1);
}

.float-tag {
  animation: soft-float 5s ease-in-out infinite;
}

.tag-mid {
  animation-delay: 1.2s;
}

.tag-aside {
  animation-delay: 0.6s;
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .settle .hero-photo {
    transform: none;
  }
}
