/* ===========================================================
   Fox & Heather — design tokens
   Palette drawn from the land: heather in bloom, deep moorland
   green, parchment mist, gorse gold, peat ink.
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  --ink:        #201b1d;
  --parchment:  #f2ede3;
  --parchment-2:#e9e1d1;
  --heather:    #6d5580;
  --heather-deep:#3c2d47;
  --moor:       #37473c;
  --moor-deep:  #223029;
  --gorse:      #c98a2c;
  --line:       rgba(32,27,29,0.14);

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--heather-deep);
}
p{ margin: 0 0 1em; }
.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.eyebrow{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moor);
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 3px;
  text-decoration:none;
  border: 1.5px solid var(--heather-deep);
  transition: transform .15s ease, background .2s ease, color .2s ease;
  cursor:pointer;
}
.btn-primary{ background: var(--heather-deep); color: var(--parchment); }
.btn-primary:hover{ background: var(--heather); border-color: var(--heather); transform: translateY(-1px); }
.btn-ghost{ background: transparent; color: var(--heather-deep); }
.btn-ghost:hover{ background: var(--heather-deep); color: var(--parchment); }
.btn-whatsapp{ background:#2f4a3a; border-color:#2f4a3a; color:var(--parchment); }
.btn-whatsapp:hover{ background: var(--gorse); border-color: var(--gorse); }

/* -------------------- contour-line signature -------------------- */
/* A recurring Ordnance-Survey-style contour motif, standing in for
   the map lines of the glens and coastline this business sells. */
.contour-divider{
  width:100%; height:56px; display:block;
  color: var(--heather);
}
.contour-divider path{ fill:none; stroke: currentColor; stroke-width:1.1; opacity:.55; }
.contour-divider path:nth-child(2){ opacity:.35; }
.contour-divider path:nth-child(3){ opacity:.2; }

/* -------------------- header -------------------- */
header{
  position: sticky; top:0; z-index: 50;
  background: rgba(242,237,227,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 32px;
  max-width: var(--max); margin:0 auto;
}
.logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo svg{ width:34px; height:34px; }
.logo span{
  font-family: var(--font-display); font-size: 21px; font-weight:600;
  color: var(--heather-deep);
}
.nav-links{ display:flex; align-items:center; gap:30px; list-style:none; margin:0; padding:0; }
.nav-links a{
  text-decoration:none; font-size: 14.5px; font-weight:500; color: var(--ink);
  position:relative;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-4px; width:0; height:1.5px;
  background: var(--gorse); transition: width .2s ease;
}
.nav-links a:hover::after{ width:100%; }
.nav-social{ display:flex; align-items:center; gap:14px; }
.nav-social a{ display:flex; }
.nav-social svg{ width:19px; height:19px; color: var(--heather-deep); transition: color .2s ease; }
.nav-social a:hover svg{ color: var(--gorse); }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle svg{ width:26px; height:26px; color: var(--heather-deep); }

/* -------------------- language switcher -------------------- */
.lang-switch{
  display:flex; align-items:center; gap:0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  flex-shrink:0;
}
.lang-switch a{
  padding: 6px 10px;
  text-decoration: none;
  color: var(--moor);
  transition: background .2s ease, color .2s ease;
}
.lang-switch a:hover{ background: var(--parchment-2); }
.lang-switch a.lang-current{
  background: var(--heather-deep);
  color: var(--parchment);
  pointer-events: none;
}
.footer-lang{
  display:flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  margin-top: 14px;
  color: var(--parchment);
  opacity:.75;
}
.footer-lang a{ text-decoration: underline; text-underline-offset: 2px; }
.footer-lang a.lang-current{ text-decoration:none; opacity:.6; pointer-events:none; }

/* -------------------- hero -------------------- */
.hero{
  position:relative;
  min-height: 92vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  background: var(--moor-deep);
}
.hero img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:.72;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(34,48,41,0.15) 0%, rgba(34,48,41,0.75) 78%, rgba(34,48,41,0.94) 100%);
}
.hero-content{
  position:relative; z-index:2;
  max-width: var(--max); margin:0 auto; width:100%;
  padding: 0 32px 64px;
  color: var(--parchment);
}
.hero-content .eyebrow{ color: #d9c9a8; }
.hero-content h1{
  color: var(--parchment);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  max-width: 15ch;
  margin: 14px 0 22px;
}
.hero-content h1 em{ font-style: italic; color: var(--gorse); }
.hero-sub{
  max-width: 46ch;
  font-size: 18px;
  color: #ece5d6;
  margin-bottom: 30px;
}
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-ctas .btn-ghost{ border-color: var(--parchment); color: var(--parchment); }
.hero-ctas .btn-ghost:hover{ background: var(--parchment); color: var(--heather-deep); }

/* -------------------- sections -------------------- */
section{ padding: 96px 0; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head h2{ font-size: clamp(2rem, 3.4vw, 2.7rem); margin-top:10px; }

/* -------------------- about -------------------- */
.about{ background: var(--parchment-2); }
.about-grid{
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items:center;
}
.about-photo{ position:relative; }
.about-photo img{ border-radius: 3px; }
.about-photo::after{
  content:''; position:absolute; top:18px; left:18px; right:-18px; bottom:-18px;
  border: 1.5px solid var(--gorse); border-radius:3px; z-index:-1;
}
.about-text p{ font-size: 17px; }
.about-signoff{
  font-family: var(--font-display); font-style: italic; font-size: 20px;
  color: var(--heather-deep); margin-top: 24px;
}
.about-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.about-tags span{
  font-family: var(--font-mono); font-size:12px; letter-spacing:.04em;
  border: 1px solid var(--line); padding:6px 12px; border-radius: 20px; color: var(--moor);
}

/* -------------------- destinations -------------------- */
.dest-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.dest-card{
  position:relative; border-radius: 4px; overflow:hidden;
  aspect-ratio: 4/3.1;
  isolation:isolate;
}
.dest-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.dest-card:hover img{ transform: scale(1.06); }
.dest-card::before{
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(30,27,29,0) 40%, rgba(30,27,29,0.88) 100%);
}
.dest-card-body{ position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:28px; color: var(--parchment); }
.dest-card-body .eyebrow{ color: #dccdaa; }
.dest-card-body h3{ color: var(--parchment); font-size: 26px; margin: 6px 0 10px; }
.dest-card-body p{ font-size: 14.5px; color: #e7e0d2; margin-bottom:0; max-width: 40ch; }

/* -------------------- how it works -------------------- */
.how{ background: var(--moor-deep); color: var(--parchment); }
.how .section-head h2{ color: var(--parchment); }
.how .eyebrow{ color: #b9c9bd; }
.how-list{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.how-item{ border-top: 1.5px solid rgba(242,237,227,0.22); padding-top: 20px; }
.how-item .num{
  font-family: var(--font-mono); color: var(--gorse); font-size: 14px; display:block; margin-bottom: 14px;
}
.how-item h4{ color: var(--parchment); font-size: 19px; margin-bottom:10px; }
.how-item p{ color: #cfc9bb; font-size: 14.5px; margin-bottom:0; }

/* -------------------- testimonials -------------------- */
.testimonials{ background: var(--parchment); }
.t-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.t-card{
  background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 30px 26px;
  display:flex; flex-direction:column;
}
.t-card p{ font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink); flex:1; }
.t-meta{ display:flex; align-items:center; gap:12px; margin-top: 18px; }
.t-avatar{
  width:38px; height:38px; border-radius:50%; background: var(--heather); color:var(--parchment);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:15px;
}
.t-name{ font-size:14px; font-weight:600; }
.t-loc{ font-size:12.5px; color: var(--moor); font-family: var(--font-mono); }

/* -------------------- geography strip -------------------- */
.geo{ background: var(--parchment-2); text-align:center; }
.geo .eyebrow{ display:block; margin-bottom: 18px; }
.geo-list{
  font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 26px);
  color: var(--heather-deep); line-height: 2.2; max-width: 900px; margin: 0 auto;
}
.geo-list span{ opacity:.4; margin: 0 10px; font-family: var(--font-body); }

/* -------------------- contact -------------------- */
.contact{ background: var(--heather-deep); color: var(--parchment); }
.contact .wrap{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
.contact .eyebrow{ color:#cbb8d8; }
.contact h2{ color: var(--parchment); font-size: clamp(2rem,3.6vw,2.8rem); margin: 12px 0 20px; }
.contact p{ color: #ded2e6; font-size:17px; max-width: 46ch; }
.contact-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 8px; }
.contact-channels{ display:flex; flex-direction:column; gap:20px; }
.channel{
  display:flex; align-items:center; gap:16px; padding: 18px 20px;
  border: 1px solid rgba(242,237,227,0.25); border-radius: 4px; text-decoration:none; color: var(--parchment);
  transition: background .2s ease, border-color .2s ease;
}
.channel:hover{ background: rgba(242,237,227,0.08); border-color: var(--gorse); }
.channel svg{ width:24px; height:24px; flex-shrink:0; color: var(--gorse); }
.channel-title{ font-weight:600; font-size:15px; }
.channel-sub{ font-size:13px; color:#cabfd3; font-family: var(--font-mono); }

/* -------------------- footer -------------------- */
footer{ background: var(--ink); color: #b9b2a8; padding: 56px 0 28px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; gap: 40px; flex-wrap:wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(242,237,227,0.12); }
.footer-logo{ display:flex; align-items:center; gap:10px; }
.footer-logo svg{ width:30px; height:30px; color: var(--gorse); }
.footer-logo span{ font-family: var(--font-display); font-size:19px; color: var(--parchment); }
.footer-tag{ font-size:14px; margin-top:10px; max-width: 32ch; }
.footer-social{ display:flex; gap:16px; }
.footer-social svg{ width:19px; height:19px; color:#b9b2a8; transition:color .2s ease; }
.footer-social a:hover svg{ color: var(--gorse); }
.footer-bottom{ display:flex; justify-content:space-between; padding-top: 22px; font-size:13px; flex-wrap:wrap; gap:10px; }

/* -------------------- reveal-on-scroll -------------------- */
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* -------------------- responsive -------------------- */
@media (max-width: 900px){
  .about-grid, .contact .wrap{ grid-template-columns: 1fr; gap:36px; }
  .dest-grid{ grid-template-columns: 1fr; }
  .how-list{ grid-template-columns: repeat(2,1fr); }
  .t-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-links, .nav-social{ display:none; }
  .nav-toggle{ display:block; }
  header.nav-open .nav-links{
    display:flex; flex-direction:column; position:absolute; top:100%; left:0; right:0;
    background: var(--parchment); padding: 20px 32px 28px; gap:18px; border-bottom:1px solid var(--line);
  }
  header.nav-open .nav-social{ display:flex; position:absolute; top:calc(100% + 190px); left:32px; }
  section{ padding: 64px 0; }
  .how-list{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; }
}
