/*! s3.css - v1.0 - 12:14 PM 3/31/2026
* Last updated by:  http://kasemodel.com
* Copyright (c) 2026 MamaMiaMarketing */

    :root {
      --bg: #f7f4ef;
      --surface: #fbf8f3;
      --surface-2: #f0e9df;
      --text: #352c24;
      --muted: #6e655b;
      --accent: #8a6a45;
      --accent-dark: #6f5334;
      --line: #ddd3c6;
      --shadow: 0 16px 40px rgba(47, 42, 36, 0.08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      line-height: 1.65;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .site-header {
      padding: 1rem 0 0.5rem;
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 1rem;
      background: rgba(255,255,255,0.4);
      border: 1px solid var(--line);
      border-radius: 999px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      min-width: 0;
    }

    .brand-mark {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: var(--surface);
      display: grid;
      place-items: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--accent-dark);
      flex: 0 0 auto;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-title {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      line-height: 1;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .brand-tag {
      display: block;
      margin-top: 0.18rem;
      color: var(--muted);
      font-size: 0.9rem;
      font-style: italic;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.15rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      font-size: 0.94rem;
    }

    .nav-links a {
      position: relative;
      color: var(--text);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -0.2rem;
      width: 100%;
      height: 1px;
      background: var(--accent-dark);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      transform: scaleX(1);
    }

    .hero {
      padding: 1rem 0 2rem;
    }

    .hero-kicker {
      margin: 0 0 0.6rem;
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .hero-headline-band {
      background: rgba(255,255,255,0.35);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 1rem 1.2rem;
      margin-bottom: 1.4rem;
    }

    .hero-headline-band h1 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 7vw, 5.2rem);
      font-weight: 500;
      line-height: 0.95;
      letter-spacing: -0.03em;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 1.35rem;
      align-items: stretch;
    }

    .panel {
      background: rgba(255,255,255,0.55);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .hero-copy {
      padding: clamp(1.4rem, 3vw, 2.2rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eyebrow {
      margin: 0 0 0.75rem;
      color: var(--muted);
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    h2, h3, h4 {
      margin: 0;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      line-height: 1.03;
      letter-spacing: -0.02em;
    }

.hero-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
  max-width: 18ch;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

    .lead {
      margin: 0 0 1.2rem;
      max-width: 33rem;
      color: var(--muted);
      font-size: 1.02rem;
    }

    .button-row {
      display: flex;
      gap: 0.85rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .button,
    .button-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.82rem 1.25rem;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    }

    .button {
      background: var(--accent);
      color: #fff;
    }

    .button:hover,
    .button:focus-visible,
    .button-secondary:hover,
    .button-secondary:focus-visible {
      transform: translateY(-1px);
    }

    .button-secondary {
      background: transparent;
      border-color: var(--line);
      color: var(--text);
    }

    .hero-note {
      margin: 0;
      font-size: 0.92rem;
      color: var(--muted);
      max-width: 28rem;
    }

    .hero-image {
      overflow: hidden;
      border-radius: var(--radius-xl);
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      object-position: center;
    }

    section.content-section {
      padding: 1rem 0 2rem;
      scroll-margin-top: 1rem;
    }

    .section-label {
      margin: 0 0 0.75rem;
      font-size: 0.82rem;
      color: var(--muted);
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .section-heading {
      margin-bottom: 1.25rem;
      max-width: 72rem;
    }

    .section-heading h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      margin-bottom: 0.65rem;
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .card {
      background: rgba(255,255,255,0.65);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: 1.25rem;
    }

    .card-badge {
      display: inline-block;
      margin-bottom: 0.7rem;
      padding: 0.28rem 0.65rem;
      border-radius: 999px;
      background: var(--surface-2);
      color: var(--accent-dark);
      font-size: 0.76rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .card h3 {
      font-size: 1.7rem;
      margin-bottom: 0.65rem;
    }

    .card p,
    .about-copy p,
    .why-panel p,
    .contact-panel p,
    .footer-grid p,
    li {
      margin: 0;
      color: var(--text);
      font-size: 0.97rem;
    }

    .card ul {
      margin: 0.9rem 0 0;
      padding-left: 1rem;
      color: var(--muted);
    }

    .card li { margin-bottom: 0.45rem; }

    .why-shell {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1rem;
    }

    .why-panel {
      padding: 1.5rem;
      min-height: 100%;
    }

    .why-panel h3 {
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      margin-bottom: 0.75rem;
    }

    .why-callout {
      background: var(--surface-2);
      border-radius: 18px;
      padding: 1rem;
      font-weight: 500;
    }

    .examples-intro {
      margin: 0 0 1rem;
      color: var(--muted);
      max-width: 62rem;
    }

    .examples-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .example-card {
      background: rgba(255,255,255,0.65);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 1rem;
      box-shadow: var(--shadow);
    }

    .example-number {
      width: 1.8rem;
      height: 1.8rem;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--surface-2);
      color: var(--accent-dark);
      font-size: 0.82rem;
      margin-bottom: 0.75rem;
    }

    .example-card h4 {
      font-size: 1.55rem;
      margin-bottom: 0.7rem;
    }

    .thumb-placeholder {
      margin-top: 0.8rem;
      min-height: 130px;
      border: 1.5px dashed rgba(138,106,69,0.45);
      border-radius: 14px;
      background: rgba(240,233,223,0.45);
      display: grid;
      place-items: center;
      color: var(--accent-dark);
      font-size: 0.9rem;
      text-align: center;
      padding: 1rem;
    }

    .upload-message {
      margin: 0 0 1rem;
      padding: 1rem 1.1rem;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,0.75);
      color: var(--text);
      font-weight: 500;
    }

    .contact-panel {
      padding: 1.35rem;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .field.full { grid-column: 1 / -1; }

    label {
      font-size: 0.9rem;
      color: var(--muted);
    }

    input, select, textarea {
      width: 100%;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.85);
      padding: 0.95rem 1rem;
      color: var(--text);
      outline: none;
    }

    textarea {
      min-height: 160px;
      resize: vertical;
    }

    input:focus, select:focus, textarea:focus {
      border-color: rgba(138,106,69,0.65);
      box-shadow: 0 0 0 3px rgba(138,106,69,0.12);
    }

    .about-shell {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 1.25rem;
      align-items: start;
    }

    .about-image {
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: rgba(255,255,255,0.7);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 320px;
    }

    .about-copy {
      padding: 0.25rem 0;
    }

    .about-copy h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 0.8rem;
    }

    .footer {
      padding: 1rem 0 2rem;
    }

    .footer-shell {
      background: rgba(255,255,255,0.55);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: 1.4rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr;
      gap: 1rem;
    }

    .footer-title {
      margin: 0 0 0.7rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
    }

    .footer-placeholder {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li { margin-bottom: 0.45rem; color: var(--muted); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      border-top: 1px solid var(--line);
      margin-top: 1rem;
      padding-top: 1rem;
      color: var(--muted);
      font-size: 0.92rem;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .nav-shell,
      .hero-grid,
      .why-shell,
      .about-shell,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .nav-shell {
        border-radius: 24px;
      }

      .nav {
        flex-direction: column;
      }

      .services-grid,
      .examples-grid,
      .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        display: grid;
      }
    }

    @media (max-width: 680px) {
      .site-header { padding-top: 0.75rem; }

      .nav-shell {
        align-items: flex-start;
        border-radius: 20px;
      }

      .brand {
        width: 100%;
      }

      .nav-links {
        width: 100%;
        justify-content: flex-start;
        gap: 0.8rem 1rem;
      }

      .hero-headline-band h1 { font-size: 2.6rem; }
      .hero-image img { min-height: 280px; }

      .services-grid,
      .examples-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .about-shell { grid-template-columns: 1fr; }
      .about-image img { min-height: 260px; }
    }

