/* =============================================
   Solano Jewelers — Light, refined palette
   (warm paper, mauve accent — no black bars, no gold)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Lusitana:wght@400;700&family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Design Tokens ---- */
:root {
  --ink:        #3a3630;
  --charcoal:   #4a4540;
  --mid:        #6b6560;
  --muted:      #8f8983;
  --accent:     #7d6a6f;
  --accent-soft:#a89498;
  --cream:      #f3ede6;
  --paper:      #faf8f5;
  --surface:    #ffffff;
  --border:     #e5ddd4;

  --font-head: 'Lusitana', Georgia, serif;
  --font-body: 'Cardo', Georgia, serif;

  --max:        1100px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --header-shadow: 0 1px 0 rgba(58, 54, 48, 0.06);
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.85;
  font-size: 1.0625rem;
}

/* ---- Container ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Divider ---- */
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 20px auto;
}
.divider--left { margin-left: 0; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--header-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}

.site-logo img {
  height: 46px;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.site-logo:hover img { opacity: 1; }

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav > li { position: relative; }

.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--mid);
  font-family: var(--font-head);
  font-size: 0.725rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav > li > a::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
  margin-top: 2px;
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--ink);
}
.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  box-shadow: 0 12px 32px rgba(58, 54, 48, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  color: var(--mid);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--accent); padding-left: 24px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  opacity: 0.75;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--cream);
  transition: max-height 0.4s var(--ease);
  border-top: 1px solid var(--border);
}
.mobile-nav.open { max-height: 640px; }
.mobile-nav a {
  display: block;
  padding: 13px 32px;
  color: var(--mid);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav .sub-link {
  padding-left: 52px;
  font-size: 0.7rem;
  color: var(--muted);
}
.mobile-nav a:hover { color: var(--accent); background: rgba(125, 106, 111, 0.06); }

/* =============================================
   HERO — home page slider
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--cream);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Soft light wash — readable type without heavy dark bands */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(250, 248, 245, 0.72) 55%,
    rgba(243, 237, 230, 0.88) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Hero text */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 36px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(58, 54, 48, 0.22);
  border: none;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* Dark variant (on light backgrounds) */
.btn--dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn--dark:hover {
  background: var(--charcoal);
  color: var(--surface);
}

/* Accent outline */
.btn--gold {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--gold:hover {
  background: var(--accent);
  color: var(--surface);
}

.btn--center { display: block; width: fit-content; margin: 32px auto 0; }

/* =============================================
   SERVICE TILES  (home: 3-column dark band)
   ============================================= */
.service-tiles {
  background: var(--surface);
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-tiles .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-tile {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.service-tile:last-child { border-right: none; }
.service-tile:hover { background: var(--paper); }

.service-tile-rule {
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 24px;
}

.service-tile h3 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 400;
}
.service-tile p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}

/* =============================================
   HOME INTRO
   ============================================= */
.home-intro {
  padding: 110px 0;
  text-align: center;
  background: var(--surface);
}

.home-intro .label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.home-intro h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto 20px;
}

.home-intro .divider { margin: 20px auto 28px; }

.home-intro p {
  max-width: 560px;
  margin: 0 auto 12px;
  color: var(--mid);
  font-size: 1.05rem;
}
.home-intro p:last-of-type { margin-bottom: 0; }

/* =============================================
   SOLANO STANDARD
   ============================================= */
.solano-standard {
  padding: 110px 0;
  background: var(--cream);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col .label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.two-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.two-col p {
  color: var(--mid);
  font-size: 1.0rem;
  margin-bottom: 14px;
  line-height: 1.85;
}
.two-col p:last-of-type { margin-bottom: 0; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--cream);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* =============================================
   EXPERT SERVICES  (dark 3-col band)
   ============================================= */
.expert-services {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.expert-services .divider { margin: 16px auto 56px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: left;
  transition: background 0.3s;
}
.service-card:hover { background: var(--paper); }

.service-card-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer-contact div[id*="wrapper"],
.footer-contact div[id*="div"],
.footer-contact .ep-iFrameContainer,
.footer-contact .ep-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

/* =============================================
   PAGE HERO  (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: var(--cream);
}
.page-hero img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(250, 248, 245, 0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.page-hero-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 24px rgba(255, 255, 255, 0.9);
}
.page-hero-text .hero-rule {
  margin: 16px auto 0;
  width: 36px;
}

/* =============================================
   CONTENT SECTIONS  (inner pages)
   ============================================= */
.content-section {
  padding: 100px 0;
}

.content-section .label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.content-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.content-section p {
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 14px;
}
.content-section p:last-of-type { margin-bottom: 0; }
.content-section p em { color: var(--muted); }

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

/* Alternating cream bg */
.section--cream { background: var(--cream); }

/* =============================================
   COLLECTIONS SLIDER
   ============================================= */
.collections-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--cream);
}
.collections-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(243, 237, 230, 0.78) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.collections-slider .hero-slide img {
  object-position: top center;
}

/* Collections content */
.collections-grid { padding: 100px 0; }

.collection-item {
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.collection-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.collection-item h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.collection-item .divider { margin: 12px 0 20px; }
.collection-item p {
  color: var(--mid);
  max-width: 680px;
  line-height: 1.85;
  margin-bottom: 10px;
}

/* =============================================
   SERVICES LIST
   ============================================= */
.services-list {
  background: var(--cream);
  padding: 80px 0;
}
.services-list h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.services-list .divider { margin: 12px 0 28px; }
.services-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.services-list ul li {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid transparent;
}
.services-list ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s, gap 0.2s;
}
.services-list ul li a::before {
  content: '—';
  color: var(--accent);
  font-size: 0.8rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.services-list ul li a:hover { color: var(--accent); gap: 20px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--surface);
  color: var(--charcoal);
  border-top: 1px solid var(--border);
}

.footer-main { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-map-wrapper,
.map-wrapper {
  position: relative;
}
.footer-map-wrapper iframe,
.map-wrapper iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.footer-map-wrapper:hover iframe,
.map-wrapper:hover iframe { opacity: 1; }

.footer-contact .footer-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-contact h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

/* =============================================
   CONTACT FORM
   ============================================= */
/* FORM 1/2 & 2/2: needs a backend before launch
   Options: Formspree (formspree.io), Netlify Forms, EmailJS
   Replace action="" with your endpoint */
.contact-form { width: 100%; }

.footer-contact div#_builder-form{
    padding: 0 !important;
}

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

/* Footer form — on light footer */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--accent);
}
.contact-form textarea {
  height: 90px;
  resize: none;
  display: block;
}

.form-submit { margin-top: 8px; }
.form-submit input[type="submit"] {
  padding: 12px 32px;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.form-submit input[type="submit"]:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--surface);
}

/* Contact page standalone form — on white bg */
.contact-standalone {
  padding: 80px 0;
}
.contact-standalone h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.contact-standalone .divider { margin: 12px 0 36px; }

.contact-standalone .contact-form input[type="text"],
.contact-standalone .contact-form input[type="tel"],
.contact-standalone .contact-form input[type="email"],
.contact-standalone .contact-form textarea {
  border-bottom-color: var(--border);
  color: var(--charcoal);
}
.contact-standalone .contact-form input::placeholder,
.contact-standalone .contact-form textarea::placeholder {
  color: var(--muted);
}
.contact-standalone .contact-form input:focus,
.contact-standalone .contact-form textarea:focus {
  border-bottom-color: var(--accent);
}
.contact-standalone .form-submit input[type="submit"] {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.contact-standalone .form-submit input[type="submit"]:hover {
  background: var(--charcoal);
  color: var(--surface);
  border-color: var(--charcoal);
}

/* =============================================
   FOOTER BOTTOM
   ============================================= */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info { line-height: 1; }
.footer-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.footer-info p:last-child { margin-bottom: 0; }
.footer-info strong {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: flex-end;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  color: var(--mid);
  font-family: var(--font-head);
  font-size: 0.75rem;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-credit {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: right;
  letter-spacing: 0.04em;
}

/* =============================================
   CONTACT US PAGE
   ============================================= */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.contact-info-block h3 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 400;
}
.contact-info-block p {
  color: var(--mid);
  line-height: 2;
  font-size: 1rem;
}
.contact-info-block a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.contact-info-block a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-map { margin-bottom: 72px; }
.contact-map .map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* =============================================
   THANK YOU
   ============================================= */
.thank-you-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.thank-you-section h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.thank-you-section .divider { margin: 16px auto 24px; }
.thank-you-section p {
  font-size: 1.05rem;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 32px;
}

/* ---- Legacy aliases (keeps old class names working) ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section--light { background: var(--cream); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .services-list ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* Grids */
  .service-tiles .container { grid-template-columns: 1fr; }
  .service-tile { border-right: none; border-bottom: 1px solid var(--border); }
  .service-tile:last-child { border-bottom: none; }
  .service-cards { grid-template-columns: 1fr; }

  /* Hero */
  .hero { height: 75vh; min-height: 420px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Page hero */
  .page-hero { height: 240px; }

  /* Collections slider */
  .collections-slider { height: 320px; }

  /* Sections */
  .content-section { padding: 64px 0; }
  .home-intro { padding: 72px 0; }
  .solano-standard { padding: 72px 0; }
  .expert-services { padding: 64px 0; }
  .collections-grid { padding: 64px 0; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
  .footer-credit { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hero { height: 68vh; }
  .page-hero { height: 190px; }
  .form-row { grid-template-columns: 1fr; }
  .content-image img { height: 260px; }
  .service-tile { padding: 40px 24px; }
}
