:root {
  --green: #315347;
  --green-dark: #243b33;
  --washi: #f7f5ef;
  --sky: #ddeef7;
  --orange: #ff7a1a;
  --ink: #1d2d2a;
  --sub: #65736c;
  --white: #fff;
  --line: rgba(0, 0, 0, .08);
  --shadow: 0 24px 70px rgba(36, 59, 51, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 900;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(255, 122, 26, .22);
}

.button--dark {
  background: var(--green);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18);
}

.button--ghost {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
  backdrop-filter: blur(12px);
}

.button-row,
.hero__actions,
.vehicle-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row--center {
  justify-content: center;
}

.section-label {
  margin-bottom: 12px;
  color: var(--orange) !important;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  display: flex;
  max-width: 1280px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 12px 24px;
}

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

.site-brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.site-brand__mark img {
  display: block;
  width: 29px;
  height: auto;
}

.site-brand__text {
  display: grid;
  line-height: 1.2;
}

.site-brand__text strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.site-brand__text small {
  color: var(--sub);
  font-size: .68rem;
  font-weight: 800;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #45524c;
  font-size: .88rem;
  font-weight: 900;
}

.primary-nav__accent {
  color: var(--orange);
}

.site-header__actions {
  display: flex;
  gap: 8px;
}

.site-header__toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--sky);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 42, 48, .46) 0%, rgba(33, 68, 76, .24) 30%, rgba(255, 255, 255, 0) 56%),
    url("../images/fv.jpg") center / cover;
}

.hero__inner {
  position: relative;
  display: grid;
  min-height: 720px;
  max-width: 1280px;
  align-items: center;
  gap: 64px;
  margin: 0 auto;
  padding: 96px 24px;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr .9fr;
  }
}

.hero__content {
  max-width: 680px;
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .16);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
  backdrop-filter: blur(12px);
}

.hero__lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .92);
  font-size: 1.18rem;
  font-weight: 700;
}

.hero__sub {
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
  font-weight: 700;
}

.hero-card {
  display: none;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

@media (min-width: 980px) {
  .hero-card {
    display: grid;
    grid-template-columns: 240px 1fr;
  }
}

.hero-card__photo {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(221, 238, 247, .35), rgba(247, 245, 239, .18)),
    url("https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?q=80&w=900&auto=format&fit=crop") center / cover;
}

.hero-card__body {
  padding: 32px;
}

.hero-card__body h2 {
  font-size: 2.2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  border-radius: 999px;
  padding: 5px 11px;
  background: var(--washi);
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 24px;
}

.section--split {
  display: grid;
  gap: 48px;
}

@media (min-width: 960px) {
  .section--split {
    grid-template-columns: .9fr 1.1fr;
  }
}

.section--washi,
.section--sky {
  max-width: none;
}

.section--washi > *,
.section--sky > * {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.section--washi {
  background: var(--washi);
}

.section--sky {
  background: var(--sky);
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section__head p {
  max-width: 680px;
  color: var(--sub);
}

.feature-grid,
.vehicle-grid,
.idea-grid {
  display: grid;
  gap: 20px;
}

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

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

.feature-card,
.vehicle-card,
.idea-grid article,
.access-card,
.info-panel,
.pet-card,
.post-card {
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.feature-card {
  padding: 28px;
}

.feature-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--sky);
}

.feature-card p,
.vehicle-card p,
.idea-grid p,
.access-card p,
.info-panel p,
.pet-card p,
.faq-list p {
  color: var(--sub);
}

.vehicle-card {
  overflow: hidden;
  background: var(--white);
}

.vehicle-card__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.vehicle-card__image--placeholder {
  background: linear-gradient(135deg, var(--sky), var(--washi));
}

.vehicle-card--green .vehicle-card__image--placeholder {
  background: linear-gradient(135deg, #d7f3ef, #9edbd1 58%, #62b7aa);
}

.vehicle-card--yellow .vehicle-card__image--placeholder {
  background: linear-gradient(135deg, #fff38a, #ffd21f 62%, #f5aa16);
}

.vehicle-card--premium .vehicle-card__image--placeholder {
  background: linear-gradient(135deg, #dfe7eb, #6c7c80);
}

.vehicle-card__body {
  padding: 26px;
}

.vehicle-card__label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 4px 11px;
  background: var(--washi);
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
}

.vehicle-card__actions {
  margin-top: 22px;
}

.booking-band {
  display: grid;
  gap: 42px;
  border-radius: 40px;
  background: var(--green);
  color: var(--white);
}

@media (min-width: 980px) {
  .booking-band {
    grid-template-columns: .85fr 1.15fr;
  }
}

.booking-band .section-label {
  color: var(--orange);
}

.booking-band p {
  color: rgba(255, 255, 255, .74);
}

.flow-grid {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.flow-grid li {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.flow-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
}

.two-panel,
.pet-faq,
.road-access {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .two-panel,
  .pet-faq,
  .road-access {
    grid-template-columns: 1fr 1fr;
  }
}

.info-panel,
.pet-card,
.access-card {
  padding: 34px;
}

.info-panel--dark {
  background: var(--green);
  color: var(--white);
}

.info-panel--dark p {
  color: rgba(255, 255, 255, .76);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-radius: 18px;
  padding: 14px 18px;
  background: var(--washi);
  color: var(--green);
  font-weight: 900;
}

.pet-card {
  background: var(--washi);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 24px;
  padding: 20px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.idea-grid article {
  padding: 24px;
}

.map-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin: 24px 0;
  border-radius: 24px;
  background: var(--sky);
  color: var(--sub);
  font-weight: 900;
}

.final-cta {
  max-width: 1120px;
  margin: 88px auto;
  border-radius: 40px;
  padding: 56px 24px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  box-shadow: 0 24px 70px rgba(255, 122, 26, .18);
}

.final-cta p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, .92);
}

.site-footer {
  padding: 56px 24px 88px;
  background: var(--green-dark);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  max-width: 1280px;
  gap: 42px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1.2fr .8fr;
  }
}

.site-brand--footer .site-brand__mark {
  background: var(--white);
  color: var(--green);
}

.site-brand--footer .site-brand__text small,
.site-footer p {
  color: rgba(255, 255, 255, .62);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.site-footer__actions {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__copy {
  max-width: 1280px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 8px;
  background: var(--white);
  box-shadow: 0 -16px 44px rgba(0, 0, 0, .08);
}

.mobile-cta a {
  border-radius: 16px;
  padding: 11px 8px;
  background: var(--washi);
  color: var(--green);
  text-align: center;
  font-size: .78rem;
  font-weight: 900;
}

.mobile-cta a:first-child {
  background: var(--green);
  color: var(--white);
}

.mobile-cta a:last-child {
  background: var(--orange);
  color: var(--white);
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
}

.archive-grid {
  display: grid;
  gap: 22px;
}

.post-card {
  overflow: hidden;
}

.post-card__body {
  padding: 24px;
}

.post-card__date {
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
}

@media (min-width: 1080px) {
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 1079px) {
  .site-header__actions,
  .primary-nav {
    display: none;
  }

  .site-header__toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: var(--washi);
    color: var(--green);
  }

  .site-header__toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .primary-nav.is-open {
    position: fixed;
    inset: 69px 0 auto;
    display: block;
    height: calc(100vh - 69px);
    padding: 24px;
    background: rgba(255, 255, 255, .98);
  }

  .primary-nav__list {
    display: grid;
    gap: 12px;
    font-size: 1.1rem;
  }

  .primary-nav__list a {
    display: block;
    border-radius: 18px;
    padding: 14px 16px;
    background: var(--washi);
  }

  .section__head {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header__inner {
    padding: 10px 16px;
  }

  .site-brand__text small {
    display: none;
  }

  .hero__inner {
    min-height: 660px;
    padding: 74px 18px 96px;
  }

  .section {
    padding: 64px 18px;
  }

  .booking-band,
  .final-cta {
    border-radius: 28px;
  }

  .button {
    width: 100%;
  }
}



/* Revision: header, hero, booking, social CTA, pet, article cards */
.button--line {
  background: #06c755;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(6, 199, 85, .2);
}

.button--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .2);
}

.social-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
}

.social-icon--line {
  background: var(--white);
  color: #06c755;
}

.social-icon--whatsapp {
  background: var(--white);
  color: #25d366;
}

.social-icon--glass {
  background: rgba(255, 255, 255, .22);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(18, 39, 45, .5) 0%, rgba(29, 63, 70, .28) 30%, rgba(255, 255, 255, 0) 56%),
    url("../images/fv.jpg") center / cover;
}

.hero__inner {
  display: flex;
  min-height: 700px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: none;
  }
}

.hero__content {
  max-width: 720px;
}

.hero-copy {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .22);
}

.hero__lead {
  font-size: clamp(1.1rem, 2.3vw, 1.42rem);
  line-height: 1.95;
}

.hero__site-title {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.8;
}

.hero__sub,
.hero-card {
  display: none;
}

.booking-section {
  padding: 88px 24px;
}

.booking-band {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px;
}

.pet-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: 0;
}

.pet-card__visual {
  position: relative;
  min-height: 240px;
  background:
    linear-gradient(135deg, rgba(247, 245, 239, .16), rgba(221, 238, 247, .18)),
    url("https://images.unsplash.com/photo-1552053831-71594a27632d?q=80&w=900&auto=format&fit=crop") center / cover;
}

.pet-card__visual span {
  position: absolute;
  right: 22px;
  bottom: -22px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 8px solid var(--washi);
  border-radius: 24px;
  background: var(--white);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.pet-card__body {
  padding: 10px 34px 34px;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(49, 83, 71, .28);
  text-underline-offset: 6px;
}

.article-grid {
  display: grid;
  gap: 20px;
}

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

.article-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}

.article-card a {
  display: grid;
  gap: 12px;
  padding: 0 20px 22px;
}

.article-card__thumb {
  display: block;
  width: calc(100% + 40px);
  max-width: none;
  height: 170px;
  margin: 0 -20px 6px;
  object-fit: cover;
}

.article-card__thumb--placeholder {
  display: block;
  background: linear-gradient(135deg, var(--sky), var(--washi));
}

.article-card__meta {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
}

.article-card p {
  color: var(--sub);
}

.site-header__toggle {
  position: relative;
  gap: 4px;
  box-shadow: inset 0 0 0 1px rgba(49, 83, 71, .1);
}

.site-header__toggle span:not(.screen-reader-text) {
  transition: transform .2s ease, opacity .2s ease;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-cta__line {
  background: #06c755 !important;
  color: var(--white) !important;
}

.mobile-cta__whatsapp {
  background: #25d366 !important;
  color: var(--white) !important;
}

@media (max-width: 620px) {
  .hero-copy {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero__lead br {
    display: none;
  }

  .booking-section {
    padding: 64px 18px;
  }

  .booking-band {
    padding: 34px 22px;
  }
}


@media (max-width: 1079px) {
  .site-header__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}


/* Keep road trip articles and access stacked on desktop too. */
.road-access {
  grid-template-columns: 1fr !important;
}

.road-access .access-card {
  max-width: 720px;
}


.access-section {
  padding-top: 0;
}

.access-section .access-card {
  max-width: 760px;
}


/* Visual polish pass: CTA glass, stacked access, article links, panel photos. */
.mobile-cta a:first-child {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.text-link {
  display: flex;
  width: fit-content;
  margin-left: auto;
}

.access-section {
  display: flex;
  justify-content: center;
}

.access-section .access-card {
  width: min(100%, 760px);
  text-align: center;
}

.access-section .access-card .button {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.first-time-panel,
.international-panel {
  position: relative;
  overflow: visible;
}

.first-time-panel {
  padding-top: 92px;
}

.first-time-panel__photo {
  position: absolute;
  top: -62px;
  right: 34px;
  width: 154px;
  aspect-ratio: 1;
  border: 10px solid var(--sky);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(247, 245, 239, .18), rgba(221, 238, 247, .18)),
    url("../images/top_beginner.jpg") center / cover;
  box-shadow: var(--shadow);
}

.international-panel {
  min-height: 430px;
  padding-right: min(38%, 240px);
  overflow: hidden;
}

.international-panel__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 260px);
  height: 58%;
  border-top-left-radius: 42px;
  background:
    linear-gradient(135deg, rgba(49, 83, 71, .08), rgba(255, 122, 26, .12)),
    url("../images/traveler.png") center / cover;
  box-shadow: -20px -20px 50px rgba(0, 0, 0, .14);
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 104px 24px;
  background:
    linear-gradient(rgba(24, 37, 33, .72), rgba(24, 37, 33, .76)),
    url("../images/top_final_cta_bg.jpg") center / cover;
}

.final-cta {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 40px;
  padding: 56px 24px;
  background: rgba(255, 255, 255, .16);
  color: var(--white);
  text-align: center;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.final-cta p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, .92);
}

@media (max-width: 760px) {
  .first-time-panel {
    margin-top: 44px;
    padding-top: 86px;
  }

  .first-time-panel__photo {
    right: 24px;
    width: 132px;
  }

  .international-panel {
    min-height: auto;
    padding-right: 34px;
    padding-bottom: 230px;
  }

  .international-panel__photo {
    width: 72%;
    height: 210px;
  }

  .final-cta-section {
    padding: 72px 18px;
  }
}


/* Font Awesome SVG icon placement. */
.fa-icon {
  display: block;
  width: 1em;
  height: 1em;
  object-fit: contain;
}

.social-icon.fa-icon {
  width: 22px;
  height: 22px;
  padding: 4px;
}

.social-icon--line,
.social-icon--whatsapp {
  background: var(--white);
}

.social-icon--glass {
  padding: 4px;
  background: rgba(255, 255, 255, .24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.feature-card__icon {
  display: grid;
  place-items: center;
}

.feature-card__icon .fa-icon {
  width: 24px;
  height: 24px;
}

.feature-card__icon .fa-icon--location-dot,
.map-placeholder .fa-icon--location-dot {
  filter: invert(43%) sepia(90%) saturate(1852%) hue-rotate(353deg) brightness(101%) contrast(101%);
}

.feature-card__icon .fa-icon--user-headset {
  filter: invert(27%) sepia(13%) saturate(1052%) hue-rotate(107deg) brightness(94%) contrast(88%);
}

.feature-card__icon .fa-icon--paw,
.pet-card__visual .fa-icon--paw {
  filter: invert(43%) sepia(90%) saturate(1852%) hue-rotate(353deg) brightness(101%) contrast(101%);
}

.feature-card__icon .fa-icon--line {
  filter: invert(56%) sepia(99%) saturate(670%) hue-rotate(89deg) brightness(92%) contrast(95%);
}

.staff-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 20px;
  border-radius: 18px;
  padding: 14px 16px;
  background: var(--washi);
  color: var(--green);
  font-weight: 900;
}

.staff-note .fa-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  filter: invert(27%) sepia(13%) saturate(1052%) hue-rotate(107deg) brightness(94%) contrast(88%);
}

.pet-card__visual span .fa-icon {
  width: 30px;
  height: 30px;
}

.map-placeholder {
  gap: 10px;
  grid-auto-flow: row;
}

.map-placeholder .fa-icon {
  width: 32px;
  height: 32px;
}


.social-icon--line.fa-icon,
.mobile-cta__line .fa-icon--line,
.button--line .fa-icon--line {
  filter: invert(56%) sepia(99%) saturate(670%) hue-rotate(89deg) brightness(92%) contrast(95%);
}

.social-icon--whatsapp.fa-icon,
.mobile-cta__whatsapp .fa-icon--whatsapp,
.button--whatsapp .fa-icon--whatsapp {
  filter: invert(67%) sepia(84%) saturate(532%) hue-rotate(83deg) brightness(90%) contrast(86%);
}

.button--ghost .social-icon--glass {
  filter: invert(1);
}


/* Social icons in buttons should be plain white, not circular badges. */
.button .social-icon.fa-icon,
.mobile-cta .social-icon.fa-icon {
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: invert(1) brightness(2);
}

.button--ghost .social-icon--glass {
  background: transparent;
  box-shadow: none;
}


.hero-copy,
.hero__lead,
.hero__site-title,
.hero__badge {
  text-shadow: 0 2px 14px rgba(0, 0, 0, .34);
}

/* Refinement tasks: header, top page, footer. */
.site-header__line-button {
  gap: 10px;
  padding-right: 24px;
  padding-left: 24px;
}

.site-header__line-button .social-icon.fa-icon {
  width: 19px;
  height: 19px;
}

.button--hero-line,
.button--hero-whatsapp {
  transition: transform .2s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.button--hero-line:hover,
.button--hero-line:focus-visible {
  background: #06c755;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(6, 199, 85, .28);
}

.button--hero-whatsapp:hover,
.button--hero-whatsapp:focus-visible {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(37, 211, 102, .28);
}

.why-article-link {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 28px;
  border-radius: 24px;
  padding: 18px 20px;
  background: var(--washi);
  box-shadow: inset 0 0 0 1px rgba(49, 83, 71, .12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.why-article-link:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 59, 51, .12);
}

.why-article-link__label {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.why-article-link__title {
  color: var(--green-dark);
  font-weight: 900;
  line-height: 1.5;
}

.why-article-link__arrow {
  width: fit-content;
  color: var(--green);
  font-size: .86rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(49, 83, 71, .24);
  text-underline-offset: 5px;
}

.booking-band .button--line {
  background: #06c755;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(6, 199, 85, .22);
}

.booking-band .button--line:hover {
  background: #04b84e;
}

.check-list--first-time li {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
}

.check-list--first-time strong {
  color: var(--green-dark);
  font-size: .98rem;
  line-height: 1.35;
}

.check-list--first-time span {
  color: var(--sub);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.65;
}

.access-card__lead {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}

.access-summary {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 24px auto 0;
  text-align: left;
}

.access-summary div {
  display: grid;
  gap: 4px;
  border-radius: 18px;
  padding: 15px 18px;
  background: var(--washi);
}

.access-summary dt {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
}

.access-summary dd {
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.7;
}

.site-footer__brand-block {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer__menus {
  display: grid;
  gap: 28px;
}

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

.footer-nav {
  align-content: start;
  grid-template-columns: 1fr;
}

.footer-nav__title {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .42) !important;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-nav a {
  width: fit-content;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.site-footer__actions .button {
  justify-content: center;
}

.site-footer__copy {
  text-align: center;
}

.back-to-top {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 34px auto 0;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .16);
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: .8fr 1.35fr .75fr;
  }
}

@media (max-width: 620px) {
  .why-article-link {
    max-width: none;
  }

  .access-summary {
    text-align: center;
  }

  .back-to-top {
    margin-bottom: 8px;
  }
}

/* Keep footer CTAs visually quiet. */
.site-footer__actions .button {
  box-shadow: none;
}

.site-footer__actions .button:hover,
.site-footer__actions .button:focus-visible {
  box-shadow: none;
}

/* Match road trip article hover motion with other link cards. */
.article-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(36, 59, 51, .12);
}

/* Sticky footer baseline for sparse lower pages. */
html,
body {
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main,
.subpage-main,
.blog-main,
.page-shell {
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* Mobile FV CTA: keep only booking button at the bottom. */
@media (max-width: 620px) {
  .hero__inner {
    position: relative;
    min-height: calc(75svh - 68px);
    padding-bottom: 92px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero__actions {
    position: absolute;
    right: 18px;
    bottom: 24px;
    left: 18px;
    display: block;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .button--hero-line,
  .hero__actions .button--hero-whatsapp {
    display: none;
  }
}

/* Mobile fixed CTA glass background. */
.mobile-cta {
  border-top: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 -16px 44px rgba(36, 59, 51, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (max-width: 1079px) {
  .site-footer__actions {
    display: none;
  }
}

@media (min-width: 900px) and (max-width: 1079px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.25fr);
    align-items: start;
  }

  .site-footer__menus {
    grid-template-columns: 1fr 1fr;
  }
}



/* TOP follow-up: embedded access map */
.map-placeholder--embed {
  overflow: hidden;
  display: block;
  padding: 0;
  background: var(--sky);
}

.map-placeholder--embed iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

@media (max-width: 620px) {
  .map-placeholder--embed iframe {
    min-height: 220px;
  }
}


.pet-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.news-section {
  background: var(--white);
  color: var(--ink);
}

.news-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.news-section .section-label,
.news-section .text-link,
.news-section a {
  color: var(--ink);
}

.news-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.news-section__head h2 {
  margin-bottom: 0;
}

.news-section__archive-link {
  flex: 0 0 auto;
}

.news-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.news-list time {
  font-weight: 700;
}

.news-list a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 620px) {
  .news-section__head {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
