/* ========== Brand Variables ========== */
:root {
  --teal: #3B7C7E;
  --charcoal: #333333;
  --white: #F9F9F9;
  --slate: #666666;
  --gold: #C6A664;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* ========== Base ========== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: #fff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.25;
  margin: 0 0 .35em;
}
h1 { font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-weight: 600; font-size: 1.125rem; }
p { margin: 0 0 1em; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.section { padding: 70px 0; }
.section.alt { background: var(--white); }

/* Focus styles (accessibility) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: auto;
}
.skip-link:focus {
  left: 12px; top: 12px; background: #fff; color: #000;
  padding: .5rem .75rem; border: 1px solid #ccc; z-index: 1000;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid #eee;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
}
.brand img { height: 44px; width: auto; }
.menu { display: flex; gap: 22px; }
.menu a { font-weight: 600; color: var(--charcoal); }
.menu a:hover, .menu a:focus { color: var(--teal); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 6px; cursor: pointer;
}
.nav-toggle .bar {
  display: block; width: 24px; height: 2px; background: var(--charcoal);
  margin: 5px 0; border-radius: 2px;
}

/* ========== InsideOut Brand Color Standard ========== */
.insideout .inside { color: var(--teal); }
.insideout .out { color: var(--charcoal); }

/* ========== Hero (Off-white) ========== */
.hero.offwhite {
  background: var(--white);
  padding: 90px 0 70px;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 30px; }
.hero-copy .tagline {
  color: var(--teal);
  font-weight: 600;
  font-size: 1.2rem;
  margin: .25rem 0 1rem;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 10px; }
.subtext { color: var(--slate); font-size: .95rem; }

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: .8rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: .2px;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { transform: translateY(-1px); }
.btn-primary {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.btn-primary:hover { box-shadow: 0 10px 24px rgba(59,124,126,.22); }
.btn-outline {
  background: #fff; color: var(--teal); border-color: var(--teal);
}
.btn-outline:hover { background: #f5fbfb; }

/* ========== Grids / Cards ========== */
.grid { display: grid; gap: 26px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

/* Lists */
.bullets { padding-left: 18px; margin: 0 0 .5rem; }
.price-note { color: var(--slate); font-size: .95rem; }

/* About */
.about-grid { align-items: center; }
.about-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid #eee;
  box-shadow: var(--shadow);
}

/* Contact */
.contact-box { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0 6px; }
.tiny { color: #888; font-size: .875rem; margin-top: 8px; }

/* ========== Responsive ========== */
@media (max-width: 920px) {
  .grid.two { grid-template-columns: 1fr; }
  .grid.three { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu {
    display: none;
    position: absolute;
    right: 16px; top: 64px;
    background: #fff; border: 1px solid #eee;
    border-radius: 12px; box-shadow: var(--shadow);
    padding: 10px 14px; flex-direction: column; gap: 10px;
  }
  .nav-toggle { display: block; }
  .menu.open { display: flex; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
