/* ===== BRAND COLORS (your palette) ===== */
:root {
    --color-primary: #124d54;       /* main teal */
    --color-primary-dark: #102937;  /* darker teal */
    --color-primary-deep: #091d26;  /* almost navy */
    --color-accent: #f9744b;        /* bright orange */
    --color-accent-dark: #d84f2a;   /* deeper orange */
  
    --color-bg: #ededed;            /* page background */
    --color-bg-soft: #ede6df;       /* light beige */
    --color-card-bg: #ffffff;
    --color-border: #e1d9cf;
  
    --color-text: #102937;
    --color-text-soft: #124d54;
  }
  
  /* ===== GLOBAL ===== */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
  }
  
  a {
    color: inherit;
  }
  
  .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  /* ===== HEADER & NAV (simple, like Calson) ===== */
  
  .site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    height: 200px;
    display: flex;
    align-items: center;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 1.25rem;
  }
  
  .brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    height: 100px;
  }
  
  .brand-logo {
    height: 100px;
    width: auto;
  }
  
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .brand-name {
    font-weight: 800;
    letter-spacing: 0.14em;
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
  }
  
  .brand-tagline {
    font-size: 0.8rem;
    color: var(--color-accent);
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  
  .main-nav a {
    text-decoration: none;
    position: relative;
  }
  
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.2s ease;
  }
  
  .main-nav a:hover::after {
    width: 100%;
  }
  
  .nav-cta {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .nav-cta:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
  }
  
  /* basic mobile tweak */
  @media (max-width: 720px) {
    .header-row {
      flex-wrap: wrap;
    }
    .main-nav {
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 0.75rem;
    }
  }
  
  .hero {
    position: relative;
    height: 400px;
    background-image: url("/assets/background-house-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #ffffff;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(9, 29, 38, 0.65),
      rgba(9, 29, 38, 0.4),
      rgba(9, 29, 38, 0.65)
    );
  }
  
  .hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  
  .hero-subtitle {
    margin-top: 0.75rem;
    font-size: 1rem;
  }
  
  /* ===== INTRO STRIP ===== */
  
  .intro-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
  }
  
  .intro-inner {
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .intro-inner p {
    margin: 0.4rem 0;
    font-size: 1.25rem;
    color: var(--color-text-soft);
  }
  
  /* ===== MAP SECTION ===== */
  
  .map-section {
    background: var(--color-bg-soft);
    padding: 2.75rem 0 3rem;
  }
  
  .map-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .map-header h2 {
    margin: 0 0 0.5rem;
  }
  
  .map-header p {
    margin: 0;
    font-size: 0.95rem;
    color: #45525b;
  }
  
  .map-frame {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .map-placeholder {
    height: 380px;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a858c;
    font-size: 0.95rem;
  }
  
  /* when you swap to an iframe, add this class */
  .map-iframe {
    width: 100%;
    height: 380px;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
  }
  
  /* ===== IMAGE GALLERY ===== */
  
  .gallery-section {
    background: #ffffff;
    padding: 3rem 0 3.25rem;
  }
  
  .gallery-header {
    text-align: center;
    margin-bottom: 1.75rem;
  }
  
  .gallery-grid {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .gallery-item {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #f8f9fb;
  }
  
  .gallery-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
  }
  
  .gallery-caption {
    padding: 0.6rem 0.75rem 0.8rem;
    font-size: 0.85rem;
    color: #44515a;
  }
  
  @media (max-width: 720px) {
    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 520px) {
    .gallery-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  
  /* ===== FOOTER (tall, simple) ===== */
  
  .site-footer {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
  }
  
  .footer-top {
    padding: 2.25rem 1.25rem 1.75rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.75rem;
    font-size: 0.85rem; 
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .footer-brand-text p {
    margin: 0.2rem 0 0.5rem;
    color: #555;
  }

  .footer-brand img {
    height: 60px;
    width: auto;
  }
  
  .footer-heading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
  }
  
  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li,
  .footer-contact li {
    margin-bottom: 0.3rem;
  }
  
  .footer-links a {
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: var(--color-accent);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 0.75rem 1.25rem 1rem;
    font-size: 0.78rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  
  @media (max-width: 800px) {
    .footer-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }
  