:root {
  --ink: #241f1b;
  --muted: #746b64;
  --cream: #f8f3ee;
  --paper: #fffdf9;
  --rose: #d8a6a0;
  --rose-dark: #ad726c;
  --mauve: #6c4d63;
  --line: rgba(36, 31, 27, 0.13);
  --shadow: 0 28px 80px rgba(61, 39, 46, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(216,166,160,.26), transparent 28rem),
    radial-gradient(circle at 8% 42%, rgba(108,77,99,.08), transparent 24rem),
    var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
}
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  text-decoration: none;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -.03em;
}
.wordmark span { color: var(--rose-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  width: 45px;
  height: 45px;
  font-weight: 700;
  cursor: pointer;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .9rem; }
.button-dark { color: #fff; background: var(--ink); }
.button-primary { color: #fff; background: var(--mauve); box-shadow: 0 14px 32px rgba(108,77,99,.2); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(108,77,99,.26); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.52); }
.button-full { width: 100%; }
.notice {
  width: min(1180px, calc(100% - 40px));
  margin: 8px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(173,114,108,.25);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: .84rem;
}
.notice p { margin: 0; }
.notice a { font-weight: 700; color: var(--mauve); }
.notice-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rose-dark); }
.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 720px;
  padding: 82px 0 70px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--rose-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
}
.hero h1,
.section-heading h2,
.route-copy h2,
.purchase-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.05em;
  line-height: .98;
}
.hero h1 { margin: 0; font-size: clamp(4rem, 8vw, 7.2rem); font-weight: 600; }
.hero h1 span { color: var(--rose-dark); }
.hero-lead { max-width: 620px; margin: 28px 0 14px; font-size: clamp(1.35rem, 2.4vw, 2.1rem); line-height: 1.3; }
.hero-support { max-width: 570px; margin: 0; color: var(--muted); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; color: var(--muted); font-size: .82rem; }
.hero-meta span::before { content: "✓"; margin-right: 7px; color: var(--rose-dark); font-weight: 700; }
.ownership-visual { position: relative; min-height: 520px; }
.visual-glow { position: absolute; inset: 15% 8% 8%; border-radius: 50%; background: rgba(216,166,160,.45); filter: blur(70px); }
.browser-card {
  position: absolute;
  border-radius: 28px;
  background: rgba(255,255,255,.87);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.browser-card-back { width: 64%; height: 240px; top: 38px; left: 0; transform: rotate(-5deg); opacity: .72; }
.browser-card-front { width: 78%; height: 355px; right: 0; bottom: 28px; padding-bottom: 20px; }
.browser-top { height: 52px; display: flex; align-items: center; gap: 7px; padding: 0 20px; border-bottom: 1px solid var(--line); }
.browser-top span { width: 9px; height: 9px; border-radius: 50%; background: #d8ccc2; }
.browser-domain { margin: 20px; padding: 12px 15px; border-radius: 12px; color: var(--muted); background: #f3eee9; font-size: .86rem; }
.browser-domain-primary { color: var(--ink); font-weight: 700; }
.browser-lines { padding: 0 22px; display: grid; gap: 14px; }
.browser-lines i { display: block; height: 12px; border-radius: 999px; background: #eee6e0; }
.browser-lines i:nth-child(2) { width: 70%; }
.browser-lines i:nth-child(3) { width: 48%; }
.mock-brand { padding: 20px 34px; }
.mock-label { font-size: .7rem; font-weight: 700; letter-spacing: .18em; color: var(--rose-dark); }
.mock-brand strong { display: block; margin: 8px 0; font-family: "Playfair Display", serif; font-size: 4rem; letter-spacing: .16em; font-weight: 500; }
.mock-brand p { margin: 0; color: var(--muted); }
.route-arrow { position: absolute; z-index: 3; left: 36%; top: 45%; width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--mauve); font-size: 2rem; box-shadow: 0 15px 35px rgba(108,77,99,.25); }
.ownership-stamp { position: absolute; right: 4%; bottom: 0; padding: 16px 20px; border-radius: 16px; color: #fff; background: var(--ink); transform: rotate(2deg); box-shadow: 0 16px 35px rgba(36,31,27,.2); }
.ownership-stamp span { display: block; opacity: .65; font-size: .65rem; letter-spacing: .16em; }
.ownership-stamp strong { font-size: .95rem; }
.value-section { padding: 100px max(20px, calc((100vw - 1180px)/2)); background: var(--ink); color: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2 { max-width: 640px; margin: 0; font-size: clamp(2.5rem, 5vw, 4.7rem); }
.value-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 300px; padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 26px; background: rgba(255,255,255,.045); display: flex; flex-direction: column; }
.value-card.featured { color: var(--ink); background: var(--rose); }
.card-number { color: rgba(255,255,255,.45); font-size: .75rem; font-weight: 700; letter-spacing: .15em; }
.featured .card-number { color: rgba(36,31,27,.45); }
.value-card h3 { margin: auto 0 12px; font-family: "Playfair Display", serif; font-size: 2.2rem; }
.value-card p { margin: 0; opacity: .72; }
.route-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}
.route-copy h2 { margin: 0 0 28px; font-size: clamp(2.6rem, 5vw, 4.6rem); }
.route-copy > p:last-child { color: var(--muted); font-size: 1.05rem; }
.route-map { position: relative; display: grid; grid-template-columns: 1fr 100px 1fr; align-items: center; }
.route-node { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: 0 20px 50px rgba(61,39,46,.08); }
.route-node small { display: block; margin-bottom: 7px; color: var(--rose-dark); font-size: .65rem; font-weight: 700; letter-spacing: .15em; }
.route-node strong { font-size: 1.2rem; }
.route-node em { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; font-style: normal; }
.route-node-final { background: #f0dfdc; }
.route-line { height: 2px; background: var(--line); position: relative; }
.route-line span { position: absolute; right: -2px; top: -4px; width: 10px; height: 10px; border-top: 2px solid var(--rose-dark); border-right: 2px solid var(--rose-dark); transform: rotate(45deg); }
.purchase-section {
  margin: 0 20px 20px;
  padding: 90px max(24px, calc((100vw - 1140px)/2));
  border-radius: 34px;
  background: linear-gradient(135deg, #6c4d63, #3c2b3a);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
  gap: 70px;
}
.purchase-section h2 { margin: 0 0 20px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.purchase-section > div > p:last-child { max-width: 620px; opacity: .72; }
.price-card { padding: 30px; border-radius: 26px; color: var(--ink); background: rgba(255,255,255,.93); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.price-card > span { font-size: .68rem; font-weight: 700; letter-spacing: .15em; color: var(--rose-dark); }
.price-card strong { display: block; margin: 8px 0 2px; font-family: "Playfair Display", serif; font-size: 4rem; }
.price-card p { margin: 0 0 24px; color: var(--muted); font-size: .9rem; }
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 55px 0 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  border-top: 1px solid var(--line);
}
footer strong { font-size: 1.1rem; }
footer p { margin: 5px 0 0; color: var(--muted); font-size: .84rem; }
.footer-links { display: flex; gap: 18px; font-weight: 700; font-size: .9rem; }
.legal { grid-column: 1 / -1; max-width: 820px; }

@media (max-width: 920px) {
  .notice { grid-template-columns: auto 1fr; }
  .notice a { grid-column: 2; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .ownership-visual { min-height: 500px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 230px; }
  .route-section { grid-template-columns: 1fr; }
  .mental-heading { grid-template-columns: 1fr; gap: 24px; }
  .mental-grid { grid-template-columns: 1fr; }
  .mental-card { min-height: 270px; }
  .purchase-section { grid-template-columns: 1fr; }
  .price-card { max-width: 480px; }
}

@media (max-width: 620px) {
  .site-header { min-height: 76px; }
  .button-small { display: none; }
  .notice { font-size: .76rem; }
  .hero { width: min(100% - 28px, 1180px); padding: 58px 0 45px; }
  .hero h1 { font-size: 3.5rem; overflow-wrap: anywhere; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .ownership-visual { min-height: 430px; }
  .browser-card-back { width: 76%; }
  .browser-card-front { width: 88%; height: 320px; }
  .mock-brand { padding: 14px 22px; }
  .mock-brand strong { font-size: 3rem; }
  .route-arrow { left: 24%; top: 43%; }
  .value-section { padding-top: 78px; padding-bottom: 78px; }
  .route-map { grid-template-columns: 1fr; gap: 20px; }
  .route-line { width: 2px; height: 46px; margin: 0 auto; }
  .route-line span { right: -4px; top: auto; bottom: -1px; transform: rotate(135deg); }
  .mental-section { padding-top: 78px; padding-bottom: 78px; }
  .mental-flow { border-radius: 24px; flex-wrap: wrap; gap: 10px 14px; }
  .purchase-section { margin: 0 12px 12px; padding: 65px 22px; border-radius: 26px; }
  footer { grid-template-columns: 1fr; }
}


.mental-section {
  padding: 112px max(20px, calc((100vw - 1180px)/2));
  background:
    radial-gradient(circle at 15% 10%, rgba(216,166,160,.2), transparent 30rem),
    var(--paper);
  border-top: 1px solid var(--line);
}
.mental-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
}
.mental-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.mental-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
}
.mental-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mental-card {
  min-height: 340px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 24px 70px rgba(61,39,46,.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mental-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}
.mental-card-top > span {
  color: var(--rose-dark);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.mental-card-top small { color: var(--muted); }
.mock-search-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -.04em;
}
.mental-card > p { color: var(--muted); }
.mock-action-row {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f3eee9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.mock-action-row span { color: var(--muted); font-size: .86rem; }
.mock-action-row strong { font-size: .94rem; }
.mock-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mock-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mauve);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}
.mock-profile strong,
.mock-profile small { display: block; }
.mock-profile small { color: var(--muted); }
.mock-link {
  margin: 26px 0 8px;
  padding: 14px 16px;
  border: 1px solid rgba(108,77,99,.18);
  border-radius: 14px;
  color: var(--mauve);
  background: #f7f0f6;
  font-weight: 700;
}
.booking-url {
  display: block;
  max-width: 100%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  overflow-wrap: anywhere;
}
.mock-book-button {
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--mauve);
  text-align: center;
  font-weight: 700;
}
.mental-flow {
  margin-top: 28px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
}
.mental-flow strong { color: var(--ink); }
.mental-flow i { color: var(--rose-dark); font-style: normal; }


.google-link-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 86px;
}
.google-link-copy h2 {
  margin: 0 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.google-link-copy > p:not(.eyebrow):not(.google-link-note) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.destination-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 24px;
}
.destination-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(108,77,99,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  color: var(--mauve);
  font-size: .84rem;
  font-weight: 700;
}
.google-link-note {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--rose-dark);
  font-weight: 700;
}
.google-profile-visual {
  position: relative;
  min-height: 500px;
  padding: 38px;
  border: 1px solid rgba(108,77,99,.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(216,166,160,.32), transparent 18rem),
    rgba(255,255,255,.6);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.profile-card,
.domain-control-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(61,39,46,.09);
}
.profile-card { padding: 24px; }
.profile-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.profile-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--mauve);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}
.profile-card-top strong,
.profile-card-top span { display: block; }
.profile-card-top strong { font-size: 1.08rem; }
.profile-card-top span { color: var(--muted); font-size: .84rem; }
.profile-card-top em {
  color: var(--rose-dark);
  font-size: .82rem;
  font-style: normal;
  font-weight: 700;
}
.profile-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.profile-actions span {
  padding: 11px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
}
.profile-actions .profile-action-active {
  color: #fff;
  border-color: var(--mauve);
  background: var(--mauve);
}
.click-connector {
  height: 76px;
  display: grid;
  place-items: center;
}
.click-connector span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--rose-dark);
  box-shadow: 0 12px 28px rgba(173,114,108,.24);
  font-size: 1.25rem;
}
.domain-control-card { padding: 26px; }
.domain-control-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--rose-dark);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .15em;
}
.domain-control-card > strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
}
.domain-destinations {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
.domain-destinations span {
  padding: 11px 13px;
  border-radius: 12px;
  background: #f3eee9;
  color: var(--muted);
  font-size: .82rem;
}
.domain-destinations span::before {
  content: "→";
  margin-right: 8px;
  color: var(--rose-dark);
  font-weight: 700;
}


@media (max-width: 920px) {
  .google-link-section { grid-template-columns: 1fr; gap: 52px; }
  .google-profile-visual { min-height: auto; }
}

@media (max-width: 620px) {
  .google-link-section {
    width: min(100% - 28px, 1180px);
    padding: 78px 0;
  }
  .google-profile-visual { padding: 20px; border-radius: 26px; }
  .profile-card { padding: 18px; }
  .profile-card-top { grid-template-columns: auto 1fr; }
  .profile-card-top em { grid-column: 2; }
  .profile-actions { grid-template-columns: 1fr; }
  .click-connector { height: 58px; }
  .domain-control-card { padding: 20px; }
}
