
/* ── Brand Tokens ── */
:root {
  --cream:        #F9F5ED;
  --cream-alt:    #F2EDE3;
  --moss:         #737654;
  --brown:        #664721;
  --stone:        #C4BBA8;
  --charcoal:     #403D35;
  --footer-bg:    #6e704c;
  --accred-bg:    #c9c8b6;
  --border-color: #D8D0C0;

  --font-display: 'Amatic SC', cursive;
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --shadow-soft:     0 2px 8px -2px rgba(40,35,20,0.07);
  --shadow-elevated: 0 4px 16px -4px rgba(40,35,20,0.10);
}

/* ── Base Reset & Typography ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ── Page Top Offset ── */
.page-top { padding-top: 100px; }
@media (max-width: 991.98px) { .page-top { padding-top: 88px; } }

.Getting h3 {font-weight:700;font-size: 1.125rem;
  line-height: 1.75rem;}

.Getting p {font-size: 18px;
  line-height: 1.8;}
  input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
}
.book .wpcf7-not-valid-tip {
    font-size: 14px;
}
.book .wpcf7-spinner {
    position: absolute;
    left: 45%;
    bottom: 49px;
}
form.wpcf7-form {
    position: relative;
}

/* ── Buttons ── */
.btn-primary-brand {
  background-color: var(--brown);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 0;
  display: inline-block;
  transition: opacity 0.25s;
      text-decoration: none;
}
.btn-primary-brand:hover { opacity: 0.88; color: var(--cream); }

/* ── Section backgrounds ── */
.bg-cream      { background-color: var(--cream); }
.bg-cream-alt  { background-color: var(--cream-alt); }
.bg-moss-light { background-color: rgba(115,118,84,0.08); }
.bg-accred     { background-color: var(--accred-bg); }
.bg-footer     { background-color: var(--footer-bg); }

/* ── Text helpers ── */
.text-moss {
    color: var(--moss);
    font-size: 18px;
}
.attraction-card .text-muted-brand {font-size:0.85rem;}
.text-brown    { color: var(--brown); }
.text-charcoal { color: var(--charcoal); }
.text-muted-brand { color: hsl(64, 18.2%, 51.6%); }
.text-cream    { color: var(--cream); }

.inBanner h1 {
    font-family: 'Palatino Linotype';
    font-weight: 500;
    letter-spacing: .04em;
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.inBanner p {
    line-height: 1.8;
    font-size: 1.25rem;
}
.contInfo h3 {
    font-family: 'Palatino Linotype';
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .02em;
}
.contInfo a {font-size: 17px;word-break: break-word;}
.contInfo p {font-size: 17px;}
section.section-primary.book.boldbg {
    background: hsla(42, 23.8%, 91.8%, 0.3);
}
.card-brand.card-brandWrp {
    background: hsl(40, 25%, 95.3%);
}
.card-brand.responce h3 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight:600;
}
.card-brand.responce p {font-size:0.88rem; line-height:1.75;}
.card-brand.responce.p-4 {
    background: hsl(40, 25%, 95.3%);
}
.review-card img {
    width: 14px;
    height: 14px;
}

/* ── Section spacing ── */
.section-slim    { padding-top: 3.5rem; padding-bottom: 3.5rem; }
@media (min-width: 768px) {
  .section-slim    { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

.exploreSec {max-width:1010px; margin:0 auto;}
.exphead p {font-size:1rem; line-height:1.8;}
.exphead h2 {font-size:clamp(1.3rem,3vw,1.8rem); letter-spacing:0.04em;}
section.inBanner.bg-cream {
    padding: 30px 0 50px;
}
.card-brand.card-brandWrp {
    padding: 35px;
}

/* ── Cards ── */
.card-brand {
  background-color: var(--cream);
  border: none;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}
.card-brand-outline {
  background-color: var(--cream);
  border: 1px solid var(--border-color);
  border-radius: 0;
}

/* ── Form Inputs ── */
.input-brand {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border-color);
  background-color: hsl(46.7, 39.1%, 95.5%);
  color: var(--moss);
  font-family: var(--font-serif);
  font-size: 15px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: auto;
}
.input-brand:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(102,71,33,0.10);
  outline: none;
}
.input-brand::placeholder { color: rgba(115,118,84,0.45); }
.label-brand {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--moss);
  display: block;
  margin-bottom: 0.45rem;
}
/* ── Contact Info Icons ── */
.icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background-color: rgba(115,118,84,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { color: var(--moss); }

/* ── Stars ── */
.stars-brown { color: var(--brown); }

/* ── Quote icon ── */
.quote-icon { color: rgba(115,118,84,0.25); }

/* ── Review Card ── */
.review-card {
  background-color: #ffffffad;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  border-radius: 0;
  font-family: 'Palatino Linotype';
}
.review-card .text-moss {
    font-size: 18px;
    line-height: 1.625;
}
.review-card svg {
    color: hsla(64.3, 20.2%, 40.8%, 0.3);
}
.rating img {
    width: 22px;
}
section.section-primary.reviewWrpp.pt-5 {
    background: hsla(38.2, 21.6%, 90%, 0.1);
}
section.section-slim.counter {
    font-family: 'Palatino Linotype';
}

/* ── Stats section ── */
.stat-number {
  font-size: 2rem;
  font-weight: 500;
  color: var(--moss);
  line-height: 1.2;
  font-family: "Playfair Display";
}
.counter p.sbTxt {font-size: 18px;}

/* ── Accreditation Section ── */
.accred-section {
  background-color: var(--accred-bg);
  padding: 1.5rem 0;
}
.accred-img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.accred-img:hover { transform: scale(1.05); }
@media (max-width: 767.98px) {
.review-card svg {
    margin-bottom: 0 !important;
}
  .accred-img { max-height: 44px; }
  .inBanner h1 {
    font-size: 1.5rem;
    line-height: 2rem;
}
.inBanner p {
    line-height: 1.7;
    font-size: 1.125rem;
}
section.inBanner.bg-cream {
    padding: 30px 0 30px;
}
.card-brand.card-brandWrp {
    padding: 25px;
}
section.section-primary.book .col-lg-8 {
    margin-top: 20px;
}
}

/* ── Footer ── */
.footer-haddon {
  background-color: var(--footer-bg);
  color: rgba(249,245,237,0.85);
  padding: 5rem 0 0;
}
.footer-links {
    color: #f6f4eeb3;
}
.footer-haddon h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.footer-haddon a {
  color: rgba(249,245,237,0.65);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.25s;
}
.footer-haddon a:hover { color: var(--cream); }
.footer-haddon li { margin-bottom: 0.6rem; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(249,245,237,0.60);
}
.footer-bottom {
  border-top: 1px solid rgba(249,245,237,0.12);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 13px;
  color: rgba(249,245,237,0.45);
}
.social-icon {
  color: rgba(249,245,237,0.45);
  transition: color 0.25s;
  margin-right: 1rem;
}
.social-icon:hover { color: var(--cream); }

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1055;
  background-color: var(--brown);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px -2px rgba(102,71,33,0.28);
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  color: var(--cream);
  opacity: 0.88;
  transform: scale(1.04);
}

/* ── Location page hero ── */
.location-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  overflow: hidden;
  padding-top:88px;
}
.location-hero h1 {font-size:clamp(2rem,5vw,3rem);}
.location-hero-in {height:100%; position:relative;}
.location-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  width:100%; height:50vh; min-height:380px; object-fit:cover; display:block;
}
.location-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.50), transparent);
}
.location-hero-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 0;
}
.location-hero-title h1 { color: var(--cream); }

/* ── Attraction card ── */
.attraction-card {
  background-color: white;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.2rem;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.attraction-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-2px);
}

/* ── TripAdvisor embed container ── */
.tripadvisor-wrap {
  position: relative;
  height: 600px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}
.tripadvisor-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.52);
  display: flex; align-items: center; justify-content: center;
}
.tripadvisor-demo-box {
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
