:root{
  /* 60 / 30 / 10 */
  --bg: #F8F6F2;        /* 60% warm off-white */
  --surface: #E7DDCF;   /* 30% sand */
  --accent: #3B848C;    /* 10% brand teal (logo vibe) */

  --text: #1F2933;
  --muted: #56616A;

  --ring: rgba(59, 132, 140, 0.35);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --max: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,246,242,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo{ height: 44px; width: auto; }
.logo--small{ height: 26px; }

.nav{
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.nav a{
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  color: var(--muted);
}
.nav a:hover{ background: rgba(0,0,0,0.05); color: var(--text); }

/* Type */
h1,h2,h3{ line-height: 1.1; margin: 0 0 0.8rem; }
h1{ font-size: clamp(2.25rem, 3.6vw, 3.3rem); letter-spacing: -0.02em; }
h2{ font-size: clamp(1.6rem, 2.2vw, 2.2rem); }
h3{ font-size: 1.2rem; }

.kicker{
  margin: 0 0 0.6rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.lead{
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.35rem;
}
.lead-sm{ font-size: 1.05rem; color: var(--muted); }
.muted{ color: var(--muted); }
.tiny{ font-size: 0.92rem; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 18px var(--ring);
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 160ms ease, background 160ms ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}
.btn--ghost:hover{ background: rgba(59,132,140,0.08); }
.btn--small{ padding: 0.65rem 0.9rem; font-size: 0.95rem; }

/* Sections */
.section{ padding: 4rem 0; }
.section--alt{ background: var(--surface); }
.section-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Hero */
.hero{ padding: 3.6rem 0 2.2rem; }
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.cta-row{
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.1rem;
}
.trust{
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 0 0 1.1rem;
}
.trust-badge{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  min-width: 180px;
}
.trust-title{ font-weight: 800; }
.trust-sub{ color: var(--muted); font-size: 0.95rem; }

.bullets{
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.hero-media{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.10);
  position: relative;
  background: rgba(255,255,255,0.25);
  min-height: 380px;
}
.hero-img{
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.hero-overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(248,246,242,0.92);
  border: 1px solid rgba(0,0,0,0.10);
  color: var(--muted);
  font-weight: 600;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.1rem;
}
.card{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.1rem 1.15rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.card p{ margin: 0; color: var(--muted); }

.split{
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}
.split-media{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: var(--shadow);
}
.split-media img{
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.split-copy p{ margin: 0.2rem 0 0.9rem; }

/* Gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.shot{
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(248,246,242,0.65);
}
.shot img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.shot figcaption{
  padding: 0.7rem 0.85rem;
  font-weight: 700;
  color: var(--muted);
}
.center-row{
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Location */
.location-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.list{
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.map{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: var(--shadow);
  min-height: 360px;
  background: rgba(255,255,255,0.35);
}
.map iframe{
  width: 100%;
  height: 360px;
  border: 0;
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-card{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: outline 160ms ease;
}
.contact-card:hover{ outline: 3px solid var(--ring); }
.contact-title{ font-weight: 900; margin-bottom: 0.2rem; }
.contact-value{ color: var(--muted); font-weight: 700; }
.contact-hint{ color: var(--muted); margin-top: 0.35rem; font-size: 0.95rem; }

.divider{
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 1rem 0;
}
.side-img{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  overflow: hidden;
  width: 100%;
  height: 210px;
  object-fit: cover;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer{
  padding: 1.2rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(248,246,242,0.92);
}
.footer-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-left{
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
}
.footer-right{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-right a{ color: var(--muted); }
.footer-right a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid, .location-grid, .contact-grid, .split{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .hero-media{ min-height: 320px; }
  .hero-img{ min-height: 320px; }
}
@media (max-width: 540px){
  .cards, .gallery{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
}
