/* ============================================================
   THOMSONS IN TOW — STYLES
   Outback / adventure palette. Edit the variables below to
   re-skin the whole site in one place.
   ============================================================ */

:root {
  --sand:   #F6EFE2;
  --cream:  #FCFAF4;
  --ink:    #221E18;
  --ink-2:  #5b5346;
  --clay:   #C45D2E;   /* terracotta accent */
  --clay-d: #a44a20;
  --gum:    #2E5E4E;   /* eucalyptus green */
  --sky:    #3A7CA5;
  --sun:    #E8A33D;
  --line:   #e4dccb;
  --card:   #ffffff;
  --shadow: 0 10px 30px rgba(34,30,24,.08);
  --shadow-lg: 0 24px 60px rgba(34,30,24,.16);
  --radius: 18px;
  --maxw: 1140px;
  --head: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--clay); text-decoration: none; }
h1, h2, h3 { font-family: var(--head); line-height: 1.1; margin: 0 0 .4em; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.muted { color: var(--ink-2); }
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
section { padding: clamp(3rem, 7vw, 6rem) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--clay); color: #fff; font-weight: 700;
  padding: .8rem 1.4rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(196,93,46,.3);
}
.btn:hover { background: var(--clay-d); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: .5rem 1rem; font-size: .9rem; }
.btn-amazon { background: #f0982a; box-shadow: 0 6px 18px rgba(240,152,42,.35); }
.btn-amazon:hover { background: #d9831b; }
.btn-discount { background: var(--sun); color: #2b2009; box-shadow: 0 6px 18px rgba(232,163,61,.4); }
.btn-discount:hover { background: #d98f28; color: #2b2009; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .8rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(252,250,244,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .55rem; color: var(--ink); font-weight: 800; }
.brand-mark { font-size: 1.5rem; }
.brand-text { font-family: var(--head); font-size: 1.25rem; letter-spacing: .2px; }
.brand-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--clay); }

/* Monogram shown if the logo image file isn't there yet */
.logo-mono {
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(135deg, var(--clay), var(--sun));
  color: #fff; font-family: var(--head); font-weight: 700;
}
.brand-logo.logo-mono { width: 38px; height: 38px; font-size: 1.1rem; }
.footer-logo.logo-mono { width: 48px; height: 48px; font-size: 1.4rem; }
.hero-logo-img.logo-mono { font-size: 4rem; }
.site-nav { display: flex; gap: .4rem; }
.site-nav a {
  color: var(--ink); font-weight: 600; padding: .5rem .9rem; border-radius: 999px;
  transition: background .2s, color .2s;
}
.site-nav a:hover { background: var(--sand); }
.site-nav a.is-active { background: var(--gum); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .25s; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: .2rem; padding: 1rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow);
  }
  .nav-open .site-nav { transform: translateY(0); }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); color: var(--cream); }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art svg { width: 100%; height: 100%; object-fit: cover; }
.hero-inner {
  position: relative; z-index: 2; padding: clamp(4rem, 12vw, 9rem) 0 clamp(3rem, 8vw, 6rem);
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
}
.hero h1 { color: #fff; max-width: 14ch; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero .lede { font-size: clamp(1.05rem, 2.4vw, 1.4rem); max-width: 46ch; color: #f4ede0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* Link-in-bio style hero (home) */
.hero-bio { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-bio h1 { max-width: none; margin-bottom: .3rem; }
.hero-bio .lede { margin: .2rem 0; }
.hero-bio .lede strong { color: #fff; }
.hero-logo { margin-bottom: 1.2rem; }
.hero-logo-img {
  width: clamp(120px, 26vw, 168px); height: clamp(120px, 26vw, 168px);
  border-radius: 50%; object-fit: cover;
  border: 5px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.hero-location {
  display: inline-block; background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.25); padding: .25rem .9rem; border-radius: 999px;
  font-weight: 700; font-size: .85rem; letter-spacing: .03em; backdrop-filter: blur(4px);
}
.hero-sub { color: #e9ddc9; max-width: 42ch; margin: .8rem auto 0; }
.hero-socials { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.4rem; }
.hero-socials .social-btn { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }
.hero-socials .social-btn:hover { background: rgba(255,255,255,.26); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .8rem; font-weight: 800; color: var(--sun); margin-bottom: 1rem;
}

/* ---------- SECTION HEADERS ---------- */
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.6rem; }
.section-head .eyebrow { color: var(--clay); }
.section-head p { color: var(--ink-2); font-size: 1.1rem; }
.section-alt { background: var(--cream); }

/* ---------- GRID + CARDS ---------- */
.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.3rem; display: flex; flex-direction: column; gap: .5rem; }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.card-head h3 { margin: 0; font-size: 1.3rem; }
.stars { color: var(--sun); white-space: nowrap; font-size: 1rem; }
.rig-note { font-size: .92rem; color: var(--gum); font-weight: 600; }

/* placeholder media (no photo yet) */
.ph {
  width: 100%; height: 100%; display: grid; place-items: center;
  background:
    radial-gradient(120% 100% at 50% 0%, hsl(var(--h) 55% 62%) 0%, hsl(calc(var(--h) + 30) 50% 42%) 100%);
  position: relative;
}
.ph::after {
  content: "📍"; position: absolute; font-size: 2.4rem; opacity: .9;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
}
.ph span {
  position: absolute; bottom: 10px; right: 12px; color: #fff; font-weight: 800;
  letter-spacing: .1em; background: rgba(0,0,0,.25); padding: 2px 8px; border-radius: 8px; font-size: .8rem;
}
.ph-gear { aspect-ratio: 16/10; }
.ph-gear::after { content: "🛒"; }

/* badges + chips */
.badge {
  position: absolute; top: 10px; font-size: .75rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.badge-state { left: 10px; background: rgba(46,94,78,.9); color: #fff; }
.badge-kid { right: 10px; background: rgba(232,163,61,.95); color: #2b2009; }
.badge-cat { position: static; align-self: flex-start; background: var(--sand); color: var(--gum); border: 1px solid var(--line); }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: .3rem 0 0; }
.chips li { font-size: .78rem; background: var(--sand); color: var(--ink-2); padding: .25rem .6rem; border-radius: 8px; }
.chips .more { background: var(--gum); color: #fff; }

/* ---------- DISCOUNT CARDS ---------- */
.discount-card { padding: 1.4rem; gap: .7rem; }
.disc-head { display: flex; align-items: center; gap: .9rem; }
.disc-icon { width: 56px; height: 56px; flex: none; display: grid; place-items: center; border-radius: 14px; }
.disc-icon.icon-emoji { font-size: 2.2rem; background: var(--sand); }
.disc-icon.icon-img { object-fit: cover; border: 1px solid var(--line); }
.disc-partner { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--clay); }
.discount-card h3 { margin: .1rem 0 0; font-size: 1.25rem; }
.disc-code {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer;
  border: 2px dashed var(--gum); background: #f3f8f5; color: var(--gum);
  border-radius: 12px; padding: .6rem 1rem; font-weight: 800; letter-spacing: .05em; font-size: 1.05rem;
  font-family: var(--body); width: 100%; transition: background .15s;
}
.disc-code:hover { background: #e8f2ec; }
.disc-code em { font-style: normal; font-size: .75rem; font-weight: 700; color: var(--clay); letter-spacing: .04em; }
.disc-expiry { font-size: .82rem; color: var(--ink-2); margin: 0; }
.ph-icon { position: absolute; font-size: 2.6rem; z-index: 1; }
.ph-gear:has(.ph-icon)::after { content: none; }

/* ---------- COMING SOON ---------- */
.coming-soon {
  text-align: center; max-width: 560px; margin: 1rem auto 0;
  background: var(--card); border: 2px dashed var(--line); border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; box-shadow: var(--shadow);
}
.coming-soon .cs-emoji { font-size: 3.2rem; line-height: 1; margin-bottom: .6rem; }
.coming-soon h3 { font-size: 1.8rem; margin-bottom: .4rem; }
.coming-soon p { color: var(--ink-2); max-width: 42ch; margin: 0 auto 1.4rem; }

/* ---------- FILTERS ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.filter {
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink);
  padding: .45rem 1rem; border-radius: 999px; cursor: pointer; font-weight: 600; transition: .15s;
}
.filter:hover { border-color: var(--clay); }
.filter.is-active { background: var(--clay); color: #fff; border-color: var(--clay); }

/* ---------- ABOUT / RIGS ---------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.rigs { display: grid; gap: 1rem; }
.rig {
  display: flex; align-items: center; gap: 1rem; background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow);
}
.rig-emoji { font-size: 2.2rem; }
@media (max-width: 760px) { .about { grid-template-columns: 1fr; } }

/* ---------- QUICK LINKS ---------- */
.quicklinks { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.ql-card {
  display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); color: var(--ink); transition: .2s;
}
.ql-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--clay); }
.ql-card .ico { font-size: 2rem; }
.ql-card h3 { margin: .6rem 0 .2rem; }

/* ---------- INSTAGRAM CTA ---------- */
.cta-insta {
  text-align: center; color: #fff; border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.5rem, 6vw, 4rem); margin-top: 1rem;
  background: linear-gradient(135deg, var(--clay), var(--sun));
  box-shadow: var(--shadow-lg);
}
.cta-insta h2 { color: #fff; }
.cta-insta .btn { background: #fff; color: var(--clay); }
.cta-insta .btn:hover { background: var(--ink); color: #fff; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: #e9e1d3; margin-top: 2rem; }
.footer-inner {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; padding: 3rem 0 2rem;
}
.footer-brand p { color: #b6ac9b; max-width: 30ch; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.5); }
.footer-socials { display: flex; flex-wrap: wrap; gap: .6rem; align-content: flex-start; }
.social-btn {
  display: inline-flex; align-items: center; gap: .4rem; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: .55rem 1rem; border-radius: 999px; font-weight: 600; transition: .2s;
}
.social-btn:hover { background: rgba(255,255,255,.18); }
.social-btn svg { width: 18px; height: 18px; flex: none; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.12);
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding: 1.2rem 0;
}
.footer-base small { color: #9d9384; }
.aff-note { opacity: .8; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
