/* =================================================================
   S&S Home Finishes LLC — warm, family-business feel
   Fraunces (serif, a little quirky) + Inter (body)
   Cream/paper background, deep navy, paint-can teal, mustard accent
   ================================================================= */

:root {
  /* Paper-warm neutrals */
  --cream: #faf6ee;        /* background — warmer than pure white */
  --cream-deep: #f1eadb;   /* secondary background */
  --paper: #fdfbf5;        /* cards */
  --ink: #1c2331;          /* primary text — deep navy, not black */
  --ink-soft: #3d4656;     /* secondary text */
  --ink-fade: #6e7686;     /* tertiary text */
  --line: #e6dfcf;         /* hairlines */

  /* Brand paint colors — sampled from the logo */
  --paint-deep: #0a3560;   /* deep navy */
  --paint-blue: #1668a0;   /* mid blue */
  --paint-teal: #1a95a8;   /* teal */
  --paint-cyan: #3cc0d0;   /* bright cyan */

  /* Single warm accent — mustard/ochre */
  --accent: #d4a33b;       /* mustard, used sparingly */
  --accent-deep: #a87d20;

  /* Stars */
  --star: #e8b838;

  /* Shadows — soft, warm */
  --shadow-sm: 0 1px 2px rgba(28, 35, 49, 0.06), 0 2px 6px rgba(28, 35, 49, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 35, 49, 0.08), 0 10px 30px rgba(28, 35, 49, 0.05);
  --shadow-lg: 0 10px 30px rgba(28, 35, 49, 0.10), 0 30px 60px rgba(28, 35, 49, 0.08);

  /* Layout */
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(.25, .8, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Subtle paper texture via gradient noise (CSS-only) */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(212, 163, 59, 0.03) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(26, 149, 168, 0.025) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; letter-spacing: 0.02em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; }

em { font-style: italic; color: var(--paint-teal); }

p { margin: 0 0 1rem; }

a {
  color: var(--paint-blue);
  text-decoration: none;
  transition: color 0.15s var(--ease);
}
a:hover { color: var(--paint-deep); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--paint-deep);
  color: var(--cream);
  border-color: var(--paint-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-fade);
}
.btn-ghost:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px 26px;
  font-size: 1rem;
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream-deep);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.topbar-hello { opacity: 0.85; }
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.topbar-phone:hover { color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--paint-teal); }
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--paint-teal);
  transition: width 0.2s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--paint-deep);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(10, 53, 96, 0.15);
}
.nav-cta:hover {
  background: var(--ink);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(28, 35, 49, 0.2);
}
.nav-cta::after { display: none !important; } /* no underline animation on the button */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 30%, rgba(26, 149, 168, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(212, 163, 59, 0.05) 0%, transparent 50%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paint-teal);
  margin-bottom: 22px;
}

.hero h1 {
  margin-bottom: 26px;
}
.hero h1 em {
  color: var(--paint-teal);
  font-style: italic;
  font-weight: 500;
}

.hero-lede {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  list-style: none;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-trust li {
  font-size: 0.88rem;
  color: var(--ink-fade);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

/* Hero visual — big prominent logo, photo accents far behind */
.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.hero-logo-stage {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0;
  padding: 30px 40px;
  /* soft glow behind the logo so text over accent photos stays readable */
  background: radial-gradient(ellipse at center,
    rgba(250, 246, 238, 0.92) 0%,
    rgba(250, 246, 238, 0.7) 55%,
    rgba(250, 246, 238, 0) 85%);
}
.hero-logo-mark {
  width: clamp(240px, 30vw, 320px);
  height: auto;
  filter:
    drop-shadow(0 10px 24px rgba(10, 53, 96, 0.22))
    drop-shadow(0 4px 8px rgba(28, 35, 49, 0.12));
  display: block;
  margin: 0 auto;
}
.hero-logo-cap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  position: relative;
  z-index: 4;
}
.hero-logo-sands {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
}
.hero-logo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hero-logo-llc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--ink-fade);
  margin-top: 6px;
}

/* Background photo accents — pushed to corners, smaller, behind the logo */
.hero-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
  z-index: 1;
  opacity: 0.88;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-1 {
  top: 2%;
  right: -8%;
  width: 42%;
  height: 34%;
  transform: rotate(3deg);
}
.hero-photo-2 {
  bottom: 6%;
  left: -10%;
  width: 44%;
  height: 32%;
  transform: rotate(-3deg);
}

/* ---------- Strip ---------- */
.strip {
  background: var(--ink);
  color: var(--cream-deep);
  padding: 68px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.strip-item h3 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.strip-item p {
  color: rgba(250, 246, 238, 0.75);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Section headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}
.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paint-teal);
  margin-bottom: 14px;
}
.section-header h2 {
  margin-bottom: 18px;
}
.section-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- Services ---------- */
.services {
  padding: 110px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.service-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
  flex-shrink: 0;
}
.service-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-photo img { transform: scale(1.04); }

.service-body {
  padding: 26px 28px 30px;
  flex: 1;
}

/* Wide card: photo on the left, text on the right, side-by-side */
.service-card-wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}
.service-card-wide .service-photo {
  flex: 1 1 55%;
  aspect-ratio: auto;
  min-height: 320px;
}
.service-card-wide .service-body {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
}
.service-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-body p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Work gallery ---------- */
.work {
  padding: 110px 0;
  background: var(--cream-deep);
  position: relative;
}
.work::before, .work::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background:
    radial-gradient(ellipse at center top, rgba(28, 35, 49, 0.06), transparent 70%);
  pointer-events: none;
}
.work::before { top: 0; }
.work::after { bottom: 0; transform: scaleY(-1); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--ink);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 20px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  background: linear-gradient(to top, rgba(14, 22, 36, 0.85), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ---------- Reviews ---------- */
.reviews {
  padding: 110px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 34px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review::before {
  content: '\201C';
  position: absolute;
  top: -18px;
  left: 26px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--paint-teal);
  opacity: 0.35;
}
.review-stars {
  color: var(--star);
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.review blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}
.review figcaption {
  font-size: 0.85rem;
  color: var(--ink-fade);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- About ---------- */
.about {
  padding: 110px 0;
  background: var(--cream-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 24px;
}
.about-copy p {
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-copy em { color: var(--paint-teal); font-style: italic; }
.about-copy strong { color: var(--ink); }

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.badge {
  padding: 16px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--paint-teal);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.badge span {
  font-size: 0.82rem;
  color: var(--ink-fade);
}

.about-photo {
  position: relative;
}
.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  border: 8px solid var(--paper);
}
.about-caption {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink-fade);
  font-size: 0.95rem;
  margin-top: 22px;
}

/* ---------- Service area ---------- */
.area {
  padding: 80px 0;
  background: var(--ink);
  color: var(--cream-deep);
}
.area-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.area h2 {
  color: var(--cream);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  max-width: 320px;
}
.area .kicker { color: var(--paint-cyan); }
.area-list {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(250, 246, 238, 0.85);
  font-weight: 400;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}

.contact-copy h2 { margin-bottom: 20px; }
.contact-copy > p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 440px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.contact-line {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.contact-line:hover:not(.contact-line-static) {
  border-color: var(--paint-teal);
  transform: translateX(3px);
}
.contact-line-static { cursor: default; }
.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream-deep);
  color: var(--paint-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}
.contact-line small {
  display: block;
  font-size: 0.83rem;
  color: var(--ink-fade);
  margin-top: 1px;
}
.contact-hours {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.contact-hours strong { color: var(--ink); }

/* Contact form */
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.form-lede {
  font-size: 0.92rem;
  color: var(--ink-fade);
  margin-bottom: 26px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--paint-teal);
  box-shadow: 0 0 0 3px rgba(26, 149, 168, 0.12);
  background: var(--paper);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233d4656' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-note {
  font-size: 0.85rem;
  color: var(--ink-fade);
  text-align: center;
  margin: 14px 0 0;
}

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.55;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status strong { color: inherit; }
.form-status a { color: inherit; text-decoration: underline; }
.form-status-success {
  background: rgba(26, 149, 168, 0.08);
  color: var(--paint-deep);
  border: 1px solid rgba(26, 149, 168, 0.3);
}
.form-status-error {
  background: rgba(220, 75, 40, 0.06);
  color: #8c2a10;
  border: 1px solid rgba(220, 75, 40, 0.25);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.75);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  height: 64px;
  filter: brightness(0) invert(1) opacity(0.9);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 320px;
  margin: 0;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-col a {
  color: rgba(250, 246, 238, 0.72);
}
.footer-col a:hover { color: var(--paint-cyan); }

.footer-bar {
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.55);
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-bar p { margin: 0; }
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .service-card-wide .service-photo { min-height: 280px; }
  .service-card-wide .service-body { padding: 30px 32px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-badges { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .strip-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .area-inner { grid-template-columns: 1fr; gap: 24px; }
  .topbar-hello { display: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 28px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; flex-direction: column; }
  .service-card-wide .service-photo { min-height: auto; aspect-ratio: 4/3; }
  .service-card-wide .service-body { padding: 26px 28px 30px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar-inner { flex-direction: column; text-align: center; }
  .hero { padding: 50px 0 70px; }
  .hero-visual { height: 420px; }
  .hero-photo-1 { width: 85%; height: 58%; }
  .hero-photo-2 { width: 70%; height: 50%; }
  .hero-logo-badge { width: 100px; height: 100px; right: 0; }
  .services, .work, .reviews, .about, .contact { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .contact-form { padding: 28px 24px; }
  .hero-logo-mark { width: clamp(220px, 60vw, 280px); }
  .hero-photo-1, .hero-photo-2 { display: none; } /* cleaner on mobile */
}

@media (max-width: 420px) {
  .topbar-phone { font-size: 0.78rem; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: 22px; }
  .hero-trust strong { font-size: 1.2rem; }
  .hero-logo-mark { width: 220px; }
}
