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

  :root {
    --berry: #1a3a6e;
    --berry-mid: #2d5faa;
    --berry-light: #c8e0ff;
    --berry-pale: #eef5ff;
    --leaf: #2d5a27;
    --leaf-light: #e5f0e3;
    --gold: #c89b3c;
    --gold-light: #fdf3dc;
    --cream: #f4f8ff;
    --ink: #0d1a2e;
    --muted: #4a6080;
    --border: rgba(26,58,110,0.12);
    --radius: 16px;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  /* shift 🫐 blueberry emoji from purple to bright blue via parent elements */
  .biz-card-icon {
    filter: hue-rotate(-40deg) saturate(2) brightness(1.2);
  }

  .quality-card-icon {
    filter: hue-rotate(-40deg) saturate(1.1) brightness(0.85);
  }

  .nav-logo {
    filter: hue-rotate(-40deg) saturate(2) brightness(1.2);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 64px;
    background: rgba(244,248,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--berry);
    letter-spacing: 0.01em;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--berry); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: max(100vh, 700px);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(13,26,46,0.1) 0%, rgba(13,26,46,0.6) 100%),
      url('https://images.unsplash.com/photo-1596591868231-05e808fd131d?w=1600&q=80') center/cover no-repeat;
    transform: scale(1.03);
    animation: slowzoom 18s ease-in-out infinite alternate;
  }

  @keyframes slowzoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
  }

  .hero-content {
    position: relative;
    padding: 80px 5% 6rem;
    max-width: 800px;
    animation: fadeup 1s ease 0.2s both;
  }

  @keyframes fadeup {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    border: 0.5px solid var(--gold);
    border-radius: 40px;
    padding: 0.3rem 0.9rem;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
    font-weight: 700;
  }

  .hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--berry);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.85rem 1.8rem;
    border-radius: 40px;
    transition: background 0.2s, transform 0.15s;
  }

  .hero-cta:hover { background: var(--berry-mid); transform: translateY(-1px); }

  /* ── SECTIONS BASE ── */
  section:not(.hero) { padding: 6rem 5%; }

  .section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--berry);
    border: 0.5px solid var(--berry);
    border-radius: 40px;
    padding: 0.28rem 0.8rem;
    margin-bottom: 1.2rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  .section-title em {
    font-style: italic;
    color: var(--berry);
  }

  /* ── ABOUT ── */
  .about {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 300;
  }

  .about-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
  }

  .about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--berry);
    color: #fff;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .about-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
  }

  /* ── QUALITY ── */
  .quality {
    background: var(--berry-pale);
  }

  .quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .quality-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    border: 0.5px solid var(--border);
  }

  .quality-card-icon {
    width: 48px;
    height: 48px;
    background: #93b3d9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .quality-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--berry);
    margin-bottom: 0.75rem;
    font-weight: 700;
  }

  .quality-card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 300;
  }

  .quality-lead {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--muted);
    max-width: 760px;
    font-weight: 300;
  }

  .quality-highlight {
    margin-top: 2.5rem;
    background: var(--berry);
    color: #fff;
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .quality-highlight-icon { font-size: 2.2rem; flex-shrink: 0; }

  .quality-highlight p {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.9;
    font-weight: 300;
  }

  .quality-highlight strong { font-weight: 500; opacity: 1; }

  /* ── PHOTO UPDATES ── */
  .updates {
    background: var(--leaf-light);
  }

  .updates-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
  }

  .photo-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: #b8d4f0;
  }

  .photo-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
  }



  .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
    min-height: 180px;
  }

  .photo-item:first-child img { min-height: 360px; }

  .photo-item:nth-child(2) { min-height: 360px; }

  .photo-item:hover img { transform: scale(1.03); }

  .photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,26,46,0.7), transparent);
    padding: 1.5rem 1rem 0.8rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.03em;
  }

  .update-note {
    margin-top: 1.5rem;
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    border-left: 3px solid var(--leaf);
    font-style: italic;
  }

  /* ── DAILY REPORT ── */
  .report {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .report-card {
    background: var(--gold-light);
    border-radius: var(--radius);
    padding: 2rem;
    border: 0.5px solid rgba(200,155,60,0.25);
  }

  .report-date {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .report-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .report-picker {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
  }

  .status-dot-yellow {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFC107;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
  }

   .status-dot-red {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F44336;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
    }

  .status-dot.yellow { background: #f9a825; box-shadow: 0 0 0 3px rgba(249,168,37,0.2); }

  .report-status span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
  }

  .report-rows { display: flex; flex-direction: column; gap: 0.75rem; }

  .report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 0.5px solid rgba(200,155,60,0.2);
    font-size: 0.9rem;
  }

  .report-row:last-child { border-bottom: none; }
  .report-row .label { color: var(--muted); font-weight: 300; }
  .report-row .val { font-weight: 500; color: var(--ink); }

  .report-note {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
    font-weight: 300;
  }

  .weather-link-card {
    background: var(--berry-pale);
    border-radius: var(--radius);
    padding: 2rem;
    border: 0.5px solid var(--border);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-decoration: none;
    transition: background 0.2s;
  }

  .weather-link-card:hover { background: var(--berry-light); }

  .weather-link-left { display: flex; align-items: center; gap: 1rem; }
  .weather-icon { font-size: 2.5rem; }

  .weather-link-left div p:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: var(--berry);
    margin-bottom: 0.2rem;
  }

  .weather-link-left div p:last-child {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 300;
  }

  .weather-arrow {
    font-size: 1.5rem;
    color: var(--berry);
  }

  /* ── BUSINESS INFO ── */
  .business {
    background: var(--berry);
    color: #fff;
  }

  .business .section-tag {
    color: var(--berry-light);
    border-color: var(--berry-light);
  }

  .business .section-title { color: #fff; }
  .business .section-title em { color: var(--gold); font-style: italic; }

  .biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .biz-card {
    background: rgba(255,255,255,0.08);
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(4px);
  }

  .biz-card-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: block;
  }

  .biz-card h3 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.6rem;
  }

  .biz-card p, .biz-card a {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
    text-decoration: none;
  }

  .biz-card a:hover { text-decoration: underline; }

  .pricing-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .pricing-row .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
  }

  .pricing-row .type {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 2rem;
    font-size: 0.82rem;
    font-weight: 300;
  }

  footer strong { color: rgba(255,255,255,0.8); font-weight: 500; }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .nav-hamburger:hover { background: var(--berry-pale); }

  .nav-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--berry);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }

  /* animated X when open */
  .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav {
      padding: 0 1.25rem;
      overflow: visible;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: rgba(244,248,255,0.98);
      z-index: 999;
    }
    .nav-links {
      display: none;
      position: fixed;
      top: 64px;
      left: 0; right: 0;
      background: rgba(244,248,255,0.98);
      flex-direction: column;
      gap: 0;
      padding: 0.5rem 0 1rem;
      border-bottom: 0.5px solid var(--border);
      box-shadow: 0 8px 24px rgba(13,26,46,0.1);
      list-style: none;
      z-index: 998;
    }
    .nav-links.nav-open { display: flex; }
    .nav-links li a {
      display: block;
      padding: 0.9rem 1.75rem;
      font-size: 1rem;
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 500;
      border-bottom: 0.5px solid var(--border);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links a:hover { color: var(--berry); background: var(--berry-pale); }
    .nav-hamburger {
      display: flex !important;
      position: relative;
      z-index: 1000;
      -webkit-filter: none;
      filter: none;
    }
    .nav-hamburger span { background: var(--berry); }
    section:not(.hero) { padding: 4rem 1.25rem; }
    .hero {
      min-height: max(100svh, 700px);
      overflow: hidden;
    }
    .hero-content { padding: 80px 1.25rem 3rem; }
    .about, .report { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { aspect-ratio: 4/3; }
    .photo-grid { grid-template-columns: 1fr 1fr; }
    .photo-item:first-child { grid-column: span 2; grid-row: span 1; }
    .quality-highlight { flex-direction: column; gap: 0.75rem; }
    .updates-header { flex-direction: column; align-items: flex-start; }
    body, section:not(.hero), footer { max-width: 100%; overflow-x: hidden; }
  }
