/* ============================================
   SALTY PUPS — saltypups.au
   Styling replicated from the original site
   ============================================ */

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

:root {
  --sand: #d7a849; --sand-mid: #f0d9a0; --sand-soft: #faf3e6; --sand-deep: #a07a20;
  --ink: #3a2a10; --ink-soft: #5a4a2a; --cream: #fffdf7; --white: #fff;
  --teal-soft: #eaf4f4; --radius: 14px; --shadow: 0 4px 24px rgba(215,168,73,0.08);
  --gold: #d7a849;
  --gold-dark: #a07a20;
  --gold-light: #faf3e6;
  --gold-mid: #f0d9a0;
  --teal: #7bb6b7;
  --teal-dark: #3d7f80;
  --teal-light: #eaf4f4;
  --teal-footer: #2e6364;
}

html { scroll-behavior: smooth; }

body { font-family: 'Nunito', sans-serif; color: #333; background: #fff; font-size: 15px; line-height: 1.7; }

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 500; line-height: 1.2; }
h1 { font-size: 42px; color: var(--gold-dark); margin-bottom: 20px; }
h2 { font-size: 32px; color: var(--gold-dark); margin-bottom: 12px; }
h3 { font-size: 20px; color: var(--gold-dark); margin-bottom: 8px; }
h1 em, h2 em { color: var(--teal-dark); font-style: italic; }

p { margin-bottom: 14px; }
.lead { font-size: 15px; color: #666; line-height: 1.8; }
.section-intro { max-width: 540px; margin: 0 auto 40px; }

.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Buttons (8px radius, like original) ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-dark { background: var(--teal); color: #fff; }
.btn-dark:hover { background: var(--teal-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

/* ---------- Header / Nav (white, like original) ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(123,182,183,0.2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 48px;
  max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 80px; width: 80px; object-fit: contain; }
.logo-text { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; color: var(--teal-dark); }
.logo .paw { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: #555; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-dark); }
.nav-links .btn { padding: 10px 24px; font-size: 14px; }
.nav-toggle { display: none; }
.nav-toggle-label { display: none; font-size: 26px; cursor: pointer; color: var(--teal-dark); }

@media (max-width: 820px) {
  .nav { padding: 12px 20px; }
  .nav-toggle-label { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch;
    padding: 16px 20px 20px; gap: 4px;
    border-top: 1px solid rgba(123,182,183,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links a { font-size: 16px; padding: 13px 8px; border-bottom: 1px solid rgba(123,182,183,0.15); }
  .nav-links li:last-child a { border-bottom: none; text-align: center; margin-top: 10px; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ---------- Hero (solid teal, like original) ---------- */
.hero { background: var(--teal); padding: 80px 0 72px; }
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero h1 { color: #fff; }
.hero h1 em { color: var(--gold-mid); }
.hero p.lead { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.8; max-width: 560px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-img {
  border-radius: 16px; aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img .fallback { font-size: 60px; opacity: 0.5; }
@media (max-width: 768px) {
  .hero { padding: 48px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { aspect-ratio: 16/9; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
}

/* ---------- Trust bar (solid gold, like original) ---------- */
.trust-bar { background: var(--gold); }
.trust-bar .wrap {
  display: flex; justify-content: center; flex-wrap: wrap;
  padding: 0 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #fff;
  padding: 14px 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 768px) { .trust-item { padding: 10px 16px; font-size: 12px; } }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tint { background: var(--gold-light); }
section.tint p, section.tint .lead { color: #5a4a2a; }
section.dark { background: var(--teal); }
section.dark h2, section.dark h3 { color: #fff; }
section.dark p, section.dark .lead { color: rgba(255,255,255,0.8); }
section.dark .eyebrow { color: rgba(255,255,255,0.6); }
.center { text-align: center; }
@media (max-width: 768px) { section { padding: 48px 0; } }

/* ---------- Cards (teal, like original service cards) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--teal);
  border-radius: 14px; padding: 26px 20px;
  transition: transform 0.2s;
  position: relative;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); }
.card h3 { font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.card p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.card .icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.card .card-link { font-size: 13px; color: var(--gold-mid); font-weight: 700; text-decoration: none; }
.card .card-link:hover { color: #fff; }
.badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(215,168,73,0.3); color: var(--gold-mid);
  border: 1px solid rgba(215,168,73,0.5);
}

/* Frosted cards on teal sections (like original team cards) */
section.dark .card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
}
section.dark .card:hover { background: rgba(255,255,255,0.15); transform: none; }

/* ---------- Steps ---------- */
.step { text-align: center; padding: 0 12px; }
.step h3 { font-family: 'Lora', serif; font-size: 20px; color: var(--gold-dark); }
.step p { font-size: 14px; color: #666; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: #fff;
  font-family: 'Lora', serif; font-size: 22px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

/* ---------- Quote band ---------- */
.quote-band { background: var(--teal); text-align: center; padding: 56px 24px; }
.quote-band blockquote {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 26px; color: #fff;
  max-width: 720px; margin: 0 auto; line-height: 1.4;
}
.quote-band cite { display: block; margin-top: 16px; font-style: normal; font-size: 13px; color: var(--gold-mid); font-weight: 700; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 768px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-img {
  border-radius: 16px; aspect-ratio: 1; overflow: hidden;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .fallback { font-size: 52px; opacity: 0.5; }
section.tint .split-img { background: #fff; }

/* ---------- Stats (plain, like original) ---------- */
.stats { display: flex; gap: 32px; margin-top: 16px; flex-wrap: wrap; }
.stat .num { font-family: 'Lora', serif; font-size: 28px; font-weight: 500; color: var(--teal-dark); }
.stat .label { font-size: 12px; color: #8a7050; margin-top: 2px; font-weight: 600; }

/* ---------- Reviews ---------- */
.review .stars { color: var(--gold-mid); font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-size: 14px; }
.review .who { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); margin-top: auto; }

/* ---------- Pricing tables ---------- */
.price-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border: 1px solid rgba(215,168,73,0.25);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(215,168,73,0.08);
}
.price-table th, .price-table td { padding: 16px 22px; text-align: left; }
.price-table th {
  background: var(--teal); color: #fff;
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.price-table td { color: #333; font-size: 14px; }
.price-table tr:nth-child(even) td { background: var(--gold-light); }
.price-table td.price { font-family: 'Lora', serif; font-weight: 600; font-size: 18px; color: var(--teal-dark); white-space: nowrap; }

/* ---------- Membership tiers (teal cards) ---------- */
.tier { border: 1px solid transparent; }
.tier.featured { border-color: var(--gold); transform: scale(1.02); }
.tier.featured:hover { transform: scale(1.02) translateY(-3px); }
.tier .tier-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.tier h3 { font-family: 'Lora', serif; font-size: 22px; }
.tier .tier-sub { color: var(--gold-mid); font-weight: 700; font-size: 12px; margin-bottom: 14px; }
.tier ul { list-style: none; margin: 0 0 20px; }
.tier ul li {
  padding: 8px 0 8px 26px; position: relative;
  color: rgba(255,255,255,0.85); font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.tier ul li::before { content: "🐾"; position: absolute; left: 0; font-size: 11px; }
.tier .tier-price { font-family: 'Lora', serif; font-size: 15px; color: #fff; font-weight: 600; margin-bottom: 16px; }
.tier .btn { text-align: center; }

/* ---------- Checklists ---------- */
ul.checklist { list-style: none; margin: 0 0 24px; }
ul.checklist li { padding: 9px 0 9px 34px; position: relative; font-size: 14px; color: #5a4a2a; }
ul.checklist li strong { color: #4a3820; }
ul.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 9px;
  width: 22px; height: 22px;
  background: var(--teal); color: #fff;
  border-radius: 50%; font-weight: 700; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
ul.crosslist { list-style: none; margin: 0 0 24px; }
ul.crosslist li { padding: 9px 0 9px 34px; position: relative; color: rgba(255,255,255,0.85); font-size: 14px; }
ul.crosslist li::before {
  content: "✕";
  position: absolute; left: 0; top: 9px;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.15); color: var(--gold-mid);
  border-radius: 50%; font-weight: 700; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Suburb pills (like original) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  background: var(--teal-light);
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.chip:hover { background: var(--teal); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--teal); text-align: center; padding: 64px 24px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 28px; }

/* ---------- Forms (white card w/ gold border, like original) ---------- */
.form-card {
  background: #fff;
  border: 1px solid rgba(215,168,73,0.25);
  border-radius: 16px; padding: 32px;
  box-shadow: 0 4px 24px rgba(215,168,73,0.08);
}
.form-card h2 { font-size: 20px; color: var(--gold-dark); margin-bottom: 6px; }
.form-card > p { font-size: 13px; color: #8a7050; margin-bottom: 22px; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-size: 12px; font-weight: 700; color: #8a7050;
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid rgba(215,168,73,0.3); border-radius: 8px;
  font-size: 14px; color: #3a2a10; background: #fffdf7;
  font-family: 'Nunito', sans-serif; transition: border-color 0.2s; outline: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--teal); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-card .btn { width: 100%; background: var(--teal); color: #fff; margin-top: 6px; }
.form-card .btn:hover { background: var(--teal-dark); }

/* ---------- Contact info ---------- */
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-item .ci-icon {
  width: 38px; height: 38px;
  background: var(--teal); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; color: #4a3820; }
.contact-item span { font-size: 12px; color: #8a7050; }
.contact-item a { color: var(--teal-dark); font-weight: 700; text-decoration: none; font-size: 14px; }
.contact-item a:hover { text-decoration: underline; }

/* White info card (intake) on gold-light section */
.info-card {
  background: #fff;
  border: 1px solid rgba(215,168,73,0.25);
  border-radius: 16px; padding: 26px;
  box-shadow: 0 4px 24px rgba(215,168,73,0.08);
}
.info-card h3 { font-size: 16px; color: var(--gold-dark); }
.info-card p { font-size: 13px; color: #5a4a2a; }

/* ---------- Footer (teal-footer, like original) ---------- */
footer { background: var(--teal-footer); padding: 40px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 28px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }
footer h4 { color: #fff; font-family: 'Lora', serif; margin-bottom: 12px; font-size: 16px; font-weight: 500; }
footer p { font-size: 13px; color: rgba(255,255,255,0.6); }
footer a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 600; transition: color 0.2s; }
footer a:hover { color: #fff; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 600; }
.footer-social { display: flex; gap: 14px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.social-icon svg { width: 18px; height: 18px; fill: #fff; }
.social-icon:hover { background: var(--gold); transform: translateY(-2px); }

/* ---------- Floating social bar (like original) ---------- */
.social-float {
  position: fixed; right: 20px; bottom: 32px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 999;
}
.social-float a {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.social-float a:hover { transform: scale(1.12); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.social-float a svg { width: 24px; height: 24px; fill: #fff; }
.social-float .sf-wa { background: #25D366; }
.social-float .sf-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-float .sf-fb { background: #1877F2; }
@media (max-width: 768px) {
  .social-float { right: 14px; bottom: 20px; }
  .social-float a { width: 42px; height: 42px; }
}

/* ---------- Swipeable reviews ---------- */
.reviews-slider {
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 24px;
  text-align: left;
  margin-top: 36px;
}
.reviews-slider .card.review {
  flex: 0 0 min(520px, 88%);
  scroll-snap-align: start;
}
.reviews-slider .card.review p { font-size: 13.5px; margin-bottom: 10px; }
.reviews-slider::-webkit-scrollbar { height: 8px; }
.reviews-slider::-webkit-scrollbar-track { background: rgba(255,255,255,0.12); border-radius: 999px; }
.reviews-slider::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.4); border-radius: 999px; }
.swipe-hint { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; }

/* ---------- Full-width photo hero (home page) ---------- */
.hero-full {
  position: relative;
  background: url('images/hero-wide.jpg') no-repeat;
  background-size: cover;
  background-position: 50% 90%;
  min-height: min(calc(100vh - 105px), 900px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-full::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(46,99,100,0.9) 0%, rgba(46,99,100,0.62) 28%, rgba(46,99,100,0) 55%);
}
.hero-full .wrap {
  position: relative; z-index: 1;
  margin: 0;               /* anchor text to the left edge */
  max-width: 640px;
}
.hero-full h1 { max-width: 520px; }
.hero-full p.lead { max-width: 480px; }
.hero-full h1, .hero-full p.lead { text-shadow: 0 1px 8px rgba(0,0,0,0.25); }
@media (max-width: 768px) {
  .hero-full {
    min-height: 480px;
    padding: 56px 0;
    background-image: url('images/hero.jpg');
    background-position: 50% 80%;
  }
  .hero-full { min-height: 480px; }
  .hero-full::before {
    background: linear-gradient(180deg, rgba(46,99,100,0.85) 0%, rgba(46,99,100,0.45) 100%);
  }
}

/* photo thumbnails on home service cards */
.card .icon-img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

/* ---------- Services page photo hero ---------- */
.hero-services {
  background-image: url('images/services-hero.jpg');
  background-color: var(--teal);
  background-position: 50% 65%;
}
@media (max-width: 768px) {
  .hero-services { background-image: url('images/services-hero.jpg'); background-position: 50% 85%; }
}

/* ---------- Pricing page photo hero ---------- */
.hero-pricing {
  background-image: url('images/pricing-hero.jpg');
  background-color: var(--teal);
  background-position: 50% 68%;
}
@media (max-width: 768px) {
  .hero-pricing { background-image: url('images/pricing-hero.jpg'); background-position: 50% 75%; }
}

/* ---------- About & Contact photo heroes ---------- */
.hero-about {
  background-image: url('images/about-hero.jpg');
  background-color: var(--teal);
  background-position: 50% 68%;
}
.hero-contact {
  background-image: url('images/contact-hero.jpg');
  background-color: var(--teal);
  background-position: 50% 70%;
}
@media (max-width: 768px) {
  .hero-about { background-image: url('images/about-hero.jpg'); background-position: 50% 75%; }
  .hero-contact { background-image: url('images/contact-hero.jpg'); background-position: 50% 78%; }
}
