/* ============================================================
   Longreach Accommodation — boutique redesign
   Palette: olive/sage green + warm taupe, gold serif headings
   ============================================================ */

:root {
  --olive:        #4a4f3d;   /* deep olive green */
  --olive-dark:   #393d2f;
  --sage:         #8a8c6f;
  --taupe:        #b9a88f;
  --gold:         #a8895c;   /* heading accent */
  --gold-dark:    #8c6f44;
  --cream:        #f5f1e9;   /* page background */
  --cream-2:      #ece5d8;
  --ink:          #2c2c26;
  --ink-soft:     #55554c;
  --white:        #ffffff;
  --maxw:         1200px;
  --serif:        'Cormorant Garamond', 'Times New Roman', serif;
  --sans:         'Jost', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--olive);
}

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .72rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 400;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--white); }

.btn-solid {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--cream);
}
.btn-solid:hover { background: var(--olive-dark); border-color: var(--olive-dark); color: var(--white); }

.btn-light { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-light:hover { background: #fff; color: var(--olive); border-color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3.2rem);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 18px rgba(0,0,0,.07);
  padding-top: .7rem; padding-bottom: .7rem;
}
.site-header .logo { display: flex; align-items: center; gap: .7rem; }
.site-header .logo img { height: 58px; width: auto; transition: height .35s ease; }
.site-header.scrolled .logo img { height: 46px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .18em;
  color: #fff; font-weight: 400;
}
.site-header.scrolled .nav a { color: var(--olive); }
.nav a:hover { color: var(--gold); }
.nav .nav-book {
  border: 1px solid rgba(255,255,255,.75); padding: .65rem 1.5rem; color: #fff;
}
.site-header.scrolled .nav .nav-book { border-color: var(--gold); color: var(--gold-dark); }
.nav .nav-book:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display:block; width:26px; height:2px; background:#fff; margin:5px 0; transition:.3s; }
.site-header.scrolled .nav-toggle span { background: var(--olive); }

.call-strip {
  position: fixed; top: 0; right: 0; z-index: 99;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #fff; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,42,33,.45) 0%, rgba(40,42,33,.32) 45%, rgba(40,42,33,.6) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding: 0 1.4rem; }
.hero .eyebrow { color: #e9dcc4; }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500;
  letter-spacing: .01em; margin-bottom: 1.4rem; text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.hero p.lead {
  font-size: 1.15rem; font-weight: 300; max-width: 620px; margin: 0 auto 2.2rem;
  color: #f3ecdd;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .6rem; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #fff; background: transparent; cursor: pointer; padding: 0; }
.hero-dots button.active { background: #fff; }

/* ============================================================
   Intro / Welcome
   ============================================================ */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

.welcome { text-align: center; background: var(--cream); }
.welcome .container { max-width: 880px; }
.welcome h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 1.5rem; }
.welcome p { color: var(--ink-soft); font-size: 1.12rem; margin-bottom: 1.3rem; }
.welcome .properties-line a { color: var(--gold-dark); border-bottom: 1px solid var(--taupe); }
.welcome .properties-line a:hover { color: var(--olive); }
.welcome .divider {
  width: 64px; height: 1px; background: var(--taupe); margin: 0 auto 2rem;
}
.welcome .btn { margin-top: 1rem; }

/* ============================================================
   Feature band (why choose us)
   ============================================================ */
.features { background: var(--olive); color: var(--cream); }
.features .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; text-align: center; }
.feature h4 { color: #fff; font-size: 1.35rem; margin-bottom: .5rem; }
.feature .num { font-family: var(--serif); font-size: 2.6rem; color: var(--taupe); display:block; margin-bottom:.4rem; line-height:1; }
.feature p { font-size: .95rem; color: #ded7c5; }

/* ============================================================
   Properties
   ============================================================ */
.properties { background: var(--cream-2); }
.properties .head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.properties .head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.properties .head p { color: var(--ink-soft); }
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.property-card { background: #fff; box-shadow: 0 12px 40px rgba(60,55,40,.08); display:flex; flex-direction:column; }
.property-card .img { aspect-ratio: 3/2; overflow: hidden; }
.property-card .img img { width:100%; height:100%; object-fit: cover; transition: transform .8s ease; }
.property-card:hover .img img { transform: scale(1.06); }
.property-card .body { padding: 2rem 1.8rem 2.2rem; text-align:center; flex:1; display:flex; flex-direction:column; }
.property-card h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.property-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1.5rem; flex:1; }
.property-card .btn { align-self:center; }

/* ============================================================
   Split feature
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split .media { min-height: 460px; background-size: cover; background-position: center; }
.split .content { padding: clamp(2.5rem, 6vw, 6rem); display:flex; flex-direction:column; justify-content:center; }
.split.alt .content { background: var(--cream); }
.split .content h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 1.3rem; }
.split .content p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.split .content .btn { margin-top: 1rem; align-self:flex-start; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--cream); }
.gallery .head { text-align:center; margin-bottom: 3rem; }
.gallery .head h2 { font-size: clamp(2rem,4vw,3rem); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: .8rem; }
.gallery-grid a { overflow: hidden; display:block; }
.gallery-grid img { width:100%; height:100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--olive); color: var(--cream); text-align:center; }
.reviews .container { max-width: 820px; }
.reviews .eyebrow { color: var(--taupe); }
.reviews .stars { color: var(--gold); letter-spacing:.3em; margin-bottom: 1.5rem; font-size:1.1rem; }
.reviews blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); line-height:1.5; color:#fff; font-style: italic; margin-bottom: 1.5rem; }
.reviews cite { font-style: normal; letter-spacing:.2em; text-transform:uppercase; font-size:.78rem; color: var(--taupe); }
.reviews .btn { margin-top: 2.2rem; }

/* ============================================================
   Location
   ============================================================ */
.location { background: var(--cream-2); }
.location .grid { display:grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items:center; }
.location h2 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom:1.2rem; }
.location p { color: var(--ink-soft); margin-bottom: 1rem; }
.location ul { list-style:none; margin-top:1.5rem; }
.location li { padding:.55rem 0; border-bottom:1px solid var(--taupe); color: var(--ink-soft); display:flex; justify-content:space-between; }
.location li span { color: var(--olive); font-family:var(--serif); }
.location .media img { width:100%; box-shadow: 0 16px 50px rgba(60,55,40,.14); }

/* ============================================================
   CTA / VIP signup
   ============================================================ */
.vip {
  position: relative; text-align:center; color:#fff;
  background: linear-gradient(rgba(40,42,33,.7), rgba(40,42,33,.7)), var(--vip-bg, var(--olive));
  background-size: cover; background-position:center;
}
.vip .container { max-width: 640px; }
.vip h2 { color:#fff; font-size: clamp(1.9rem,4vw,2.8rem); margin-bottom:1rem; }
.vip p { color:#eee4d2; margin-bottom: 2rem; }
.vip form { display:flex; gap:.7rem; flex-wrap:wrap; justify-content:center; }
.vip input {
  flex:1 1 220px; padding:1rem 1.2rem; border:1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1); color:#fff; font-family:var(--sans); font-size:.95rem;
}
.vip input::placeholder { color: #e6ddca; }
.vip input:focus { outline:none; border-color: var(--gold); background: rgba(255,255,255,.16); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--olive-dark); color: #cfc9ba; padding: 4rem 0 2rem; }
.site-footer .grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.site-footer img.flogo { height: 90px; margin-bottom: 1.2rem; }
.site-footer h5 { font-family:var(--serif); color:#fff; font-size:1.3rem; margin-bottom:1.1rem; font-weight:500; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style:none; }
.site-footer li { padding:.32rem 0; font-size:.92rem; }
.site-footer .contact p { font-size:.92rem; margin-bottom:.6rem; }
.site-footer .social { margin-top:1rem; }
.site-footer .social a {
  display:inline-flex; width:38px; height:38px; border:1px solid rgba(255,255,255,.3);
  align-items:center; justify-content:center; border-radius:50%; margin-right:.5rem;
}
.site-footer .social a:hover { background: var(--gold); border-color: var(--gold); color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top:1.5rem; text-align:center; font-size:.82rem; color:#9c9684; }
.footer-bottom a { color:#cfc9ba; text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .features .container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .property-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; }
  .split .media { min-height: 320px; }
  .split.reverse .media { order: -1; }
  .location .grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 2rem; text-align:center; }
  .site-footer .social { display:flex; justify-content:center; }
}

@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: var(--olive);
    flex-direction: column; justify-content: center; gap: 1.6rem; transform: translateX(100%); transition: transform .4s ease; padding: 2rem; }
  .nav.open { transform: translateX(0); }
  .nav a { color:#fff !important; font-size: 1rem; }
  .nav-toggle { display:block; z-index: 101; }
  .nav .nav-book { border-color: rgba(255,255,255,.7) !important; color:#fff !important; }
}

@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid .wide { grid-column: span 1; }
  .hero-cta { flex-direction: column; align-items: center; }
}
