:root {
  --primary: #0f172a;
  --primary-dark: #a8844c;
  --text: #0f172a;
  --text-light: #666;
  --bg: #ffffff;
  --bg-soft: #f8f8f8;
  --footer: #111;
  --accent: #8b5e3c;
  --accent-dark: #6f492d;
  --light: #f8fafc;
  --panel: #ffffff;
  --muted: #475569;
  --border: #e2e8f0;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--accent);
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 10px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1120px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.2px;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.95rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

/* Layout */
.container {
  max-width: 1120px;
  margin: auto;
  padding: 56px 20px;
}

.section {
  padding: 0px 16px;
}

.section-alt {
  background: var(--bg-soft);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

hr {
  border: none;
  height: 1px;
  background: #eee;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  margin-bottom: 14px;
  color: var(--primary);
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

p {
  color: var(--muted);
}

/* Buttons */
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.cta,
.button-secondary {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.cta {
  background: var(--accent);
  color: #fff;
}

.cta:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border);
}

.button-secondary:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.cta:focus,
.button-secondary:focus,
nav a:focus,
a[href^="mailto"]:focus {
  outline: 3px solid #c2410c;
  outline-offset: 2px;
}
/* Homepage Hero */

.hero--simple {
  position: relative;
  min-height: auto;
  display: block;
  padding: 80px 0;
  background: #f7f7f7; /* or your brand colour */
}

/* kill overlay */
.hero--simple::after {
  display: none;
}

/* kill background image positioning if inherited */
.hero--simple .hero-bg {
  display: none;
}

/* reset layout */
.hero--simple .hero-grid {
  position: static;
}

.hero--simple .hero-copy {
  color: #222;
  max-width: 600px;
}

.hero--simple .hero-copy {
  color: #222;
  max-width: 600px;
}

.hero--simple .hero-copy h1,
.hero--simple .hero-copy p {
  color: #222;
}

/* optional: centre nicely */
.hero--simple .hero-copy {
  text-align: left; /* or center if you prefer */
}

/* Hero */
.hero {
  padding: 0px 0 0px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
  max-width: 1120px;
  margin-top:20px;
  /*margin: auto;*/
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 64ch;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.point strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.point span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.hero-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.hero-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-panel li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional overlay (safe) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4); /* lightweight */
  z-index: 1;
}

/* Text layer */
.hero-grid {
  position: relative;
  z-index: 2;
}

.hero-copy {
  color: #fff;
}

.hero-copy h1,
.hero-copy p {
  color: #fff;
}



/* Cards & Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.card p {
  font-size: 0.97rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-copy {
  padding: 18px;
}

.service-copy a {
  text-decoration: none;
  color: var(--primary);
}

.service-copy a:hover {
  color: var(--accent-dark);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.gallery-item img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}

.gallery-caption {
  padding: 14px 16px;
  color: var(--primary);
  font-weight: 600;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.quote-card p {
  margin-bottom: 14px;
}

.quote-name {
  font-weight: 700;
  color: var(--primary);
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.contact-intro {
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
}

.contact-intro h2,
.contact-intro p,
.contact-intro .eyebrow {
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-grid .card {
  height: 100%;
}

.contact-grid .areas {
  grid-column: 1 / -1;
}

.contact-section {
  padding: 0px 0;
}

a[href^="mailto"]:not(.cta) {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
}

a[href^="mailto"]:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-intro {
    text-align: center;
    padding: 20px;
  }
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 20px 16px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #333;
}

.social-icons a:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.social-icons a:hover svg {
  fill: #fff;
}

/* Email */
.email-cta {
  display: inline-block;
  text-align: center;
}

.email-text {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  word-break: break-all;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .contact-wrap,
  .services-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-image img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    gap: 12px;
  }

  .hero {
    padding-top: 0px;
  }

  .hero-points,
  .grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .areas {
    order: -1;
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Room planner */

.diagram {
  background: #fff;
  padding: 10px;
}

.diagram {
  margin-top: 20px;
  background: #fff;   /* 🔥 THIS makes a big difference */
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.footer-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 6px;
}

.footer-column a {
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}

.footer-column a:hover {
  opacity: 1;
}

/* AREA PAGE SERVICES (NEW STYLE) */
.area-services {
  margin-top: 40px;
}

/* base block */
.area-block {
  padding: 60px 0;
  background: #f8fafc;
}

/* alternating tone */
.area-block.alt {
  background: #eef2f7;
}

/* remove card feel completely */
.area-block .container {
  max-width: 1100px;
}

/* typography upgrade */
.area-block h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.area-block p {
  max-width: 600px;
  margin-bottom: 16px;
  opacity: 0.85;
}

/* link styling (slightly more premium) */
.area-block .link {
  font-weight: 500;
  text-decoration: none;
}

/* subtle interaction */
.area-block:hover {
  background: #e9eef5;
}

/* ROW LAYOUT */
.area-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* important: no gaps = seamless */
  margin-top: 40px;
}

/* PANEL BASE */
.area-panel {
  padding: 40px 30px;
  background: #f8fafc;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.3s ease;
}

/* alternating tone */
.area-panel.alt {
  background: #eef2f7;
}

/* subtle separation (NOT card borders) */
.area-panel + .area-panel {
  border-left: 1px solid #e3e8ef;
}

/* typography */
.area-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.area-panel p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

/* link style */
.area-panel .link {
  font-weight: 500;
}

/* hover = soft shift, not lift */
.area-panel:hover {
  background: #e9eef5;
}

/* RESPONSIVE (very important) */
@media (max-width: 900px) {
  .area-row {
    grid-template-columns: 1fr;
  }

  .area-panel + .area-panel {
    border-left: none;
    border-top: 1px solid #e3e8ef;
  }
}

.faq-section {
  background: #f8f8f8;
}

.faq {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 16px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}