/* =============================================
   MEROSMITH TILE & FLOORING — Global Stylesheet v2
   Navy + Gold — Professional & Refined
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette — pulled from logo navy */
  --navy:        #1e2255;
  --navy-dark:   #141740;
  --navy-light:  #2c3275;
  --gold:        #b8913a;
  --gold-light:  #d4aa58;
  --gold-pale:   #f5edd8;
  --cream:       #f8f5f0;
  --warm-white:  #fdfcfa;
  --off-white:   #f2efe9;

  /* Text */
  --text-dark:   #181a2e;
  --text-medium: #3d4060;
  --text-light:  #7a7d9a;

  /* Borders */
  --border:      #e2ddd5;
  --border-navy: rgba(30,34,85,0.15);

  /* Fonts */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --max-w:      1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.75rem; }
.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.18; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-medium); line-height: 1.75; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary  { background: var(--gold); color: white; }
.btn-primary:hover  { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,145,58,0.35); }
.btn-outline  { border-color: white; color: white; }
.btn-outline:hover  { background: white; color: var(--navy); }
.btn-navy     { background: var(--navy); color: white; }
.btn-navy:hover     { background: var(--navy-light); transform: translateY(-1px); }
.btn-ghost    { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover    { background: var(--navy); color: white; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 0.55rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--gold-light); transition: color var(--transition); }
.topbar a:hover { color: white; }

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(30,34,85,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-wrap { display: flex; align-items: center; }
.logo-wrap img { height: 54px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.2rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
  background: rgba(30,34,85,0.06);
}
.nav-cta {
  background: var(--navy) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.35rem !important;
  letter-spacing: 0.05em !important;
}
.nav-cta:hover { background: var(--gold) !important; color: white !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy-dark); transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--navy-dark);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/gallery/Backsplash.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy-dark) 40%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 5rem 0;
}
.hero h1 { color: white; margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--gold);
  padding: 1.1rem 0;
}
.trust-items {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.83rem; color: white;
  letter-spacing: 0.03em;
}
.trust-icon { font-size: 1rem; }

/* ---- INTRO ---- */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.intro-img { position: relative; }
.intro-img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px;
}
.intro-img::after {
  content: '';
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 60%; height: 60%;
  border: 3px solid var(--gold);
  border-radius: 2px; z-index: -1;
}
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.65;
}
.quote-block small { font-size: 0.85rem; font-family: var(--sans); font-style: normal; color: var(--text-light); display: block; margin-top: 0.5rem; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: 0 8px 32px rgba(30,34,85,0.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.93rem; }
.service-card a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--navy); font-weight: 600; font-size: 0.83rem;
  margin-top: 1.25rem; letter-spacing: 0.04em;
  transition: gap var(--transition);
}
.service-card a:hover { gap: 0.6rem; color: var(--gold); }

/* ---- WHY US ---- */
.why-us { background: var(--navy); }
.why-us .eyebrow { color: var(--gold-light); }
.why-us h2 { color: white; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px; padding: 2rem;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); }
.why-num {
  font-family: var(--serif); font-size: 3rem; color: var(--gold);
  font-weight: 700; line-height: 1; margin-bottom: 0.75rem;
}
.why-card h4 { color: white; margin-bottom: 0.6rem; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.62); font-size: 0.92rem; }

/* ---- PROCESS ---- */
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 2rem;
  left: 10%; right: 10%; height: 1px;
  background: var(--border); z-index: 0;
}
.process-step {
  text-align: center; padding: 0 1.5rem 2rem; position: relative; z-index: 1;
}
.step-num {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(30,34,85,0.25);
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: white; border-radius: 2px; padding: 2rem;
  box-shadow: 0 2px 16px rgba(30,34,85,0.07);
  position: relative; border-top: 3px solid var(--gold);
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--serif); font-size: 5rem;
  color: var(--navy); line-height: 0.7;
  position: absolute; top: 1.5rem; left: 1.5rem; opacity: 0.12;
}
.testimonial-text {
  font-size: 0.96rem; line-height: 1.78; color: var(--text-medium);
  margin-bottom: 1.5rem; padding-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.stars { color: var(--gold); font-size: 0.85rem; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--navy-dark); color: white;
  text-align: center; padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,145,58,0.12) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT STRIP ---- */
.contact-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 46px; height: 46px; background: var(--navy);
  border-radius: 2px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text strong {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-light); font-weight: 600; margin-bottom: 0.25rem;
}
.contact-item-text a, .contact-item-text p { font-size: 0.97rem; color: var(--text-dark); font-weight: 500; }
.contact-item-text a:hover { color: var(--gold); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.footer-logo-text span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--gold-light);
  font-family: var(--sans);
  margin-top: 0.3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.65); }
.footer-brand .dale-quote {
  margin-top: 1.25rem; font-size: 0.87rem; font-style: italic;
  color: rgba(255,255,255,0.5); line-height: 1.7;
  border-left: 2px solid var(--gold); padding-left: 0.85rem;
}
.footer-col h5 {
  color: white; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 600;
  margin-bottom: 1.25rem; font-family: var(--sans);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.82rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy-dark); padding: 5.5rem 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%);
  opacity: 0.85;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('/gallery/Backsplash.jpg');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 0.85rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; }

/* ---- FORM ---- */
.contact-form-wrap {
  background: white; border-radius: 2px; padding: 3rem;
  box-shadow: 0 4px 32px rgba(30,34,85,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 2px;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--text-dark); background: var(--warm-white);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,34,85,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4/3; background: var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(20,23,64,0.85));
  color: white; padding: 1.5rem 1rem 0.85rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.02em;
  transform: translateY(100%); transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ---- SERVICE PAGE LAYOUT ---- */
.service-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.service-section:last-of-type { border-bottom: none; }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-img { border-radius: 2px; overflow: hidden; }
.service-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.service-copy h2 { margin-bottom: 1rem; }
.service-copy p { margin-bottom: 1rem; }
.feature-list { list-style: none; margin: 1.5rem 0; }
.feature-list li {
  padding: 0.5rem 0; padding-left: 1.5rem;
  position: relative; font-size: 0.95rem; color: var(--text-medium);
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---- ABOUT PAGE ---- */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 3rem 0; }
.founder-card {
  background: white; border-radius: 2px; padding: 2.5rem;
  border: 1px solid var(--border); border-top: 3px solid var(--navy);
}
.founder-card h3 { margin-bottom: 0.25rem; }
.founder-title { color: var(--gold); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.founder-card p { font-size: 0.97rem; line-height: 1.78; }
.benefit-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.benefit-item:last-child { border-bottom: none; }
.benefit-num { font-family: var(--serif); font-size: 3.5rem; color: var(--gold); font-weight: 700; line-height: 1; flex-shrink: 0; width: 3.5rem; }
.benefit-text h4 { margin-bottom: 0.5rem; }

/* ---- FLOORING CARDS ---- */
.flooring-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.flooring-card { background: white; border-radius: 2px; overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.flooring-card:hover { box-shadow: 0 8px 32px rgba(30,34,85,0.1); transform: translateY(-2px); }
.flooring-card-img { aspect-ratio: 4/3; overflow: hidden; }
.flooring-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.flooring-card:hover .flooring-card-img img { transform: scale(1.04); }
.flooring-card-body { padding: 2rem; }
.flooring-card-body h3 { margin-bottom: 0.75rem; }
.flooring-card-body p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.tag {
  display: inline-block; background: var(--off-white); color: var(--text-medium);
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.65rem; border-radius: 2px;
  margin: 0.15rem; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ---- CONTACT PAGE ---- */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-block { background: var(--cream); border-radius: 2px; padding: 2rem; margin-bottom: 1.5rem; border-left: 3px solid var(--gold); }
.info-block h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr td { padding: 0.5rem 0; font-size: 0.92rem; color: var(--text-medium); }
.hours-table tr td:first-child { font-weight: 600; color: var(--text-dark); width: 55%; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.map-wrap { border-radius: 2px; overflow: hidden; margin-bottom: 1.5rem; }
.map-wrap iframe { display: block; width: 100%; height: 300px; border: none; }
.form-submit-note { font-size: 0.83rem; color: var(--text-light); margin-top: 0.75rem; }

/* ---- GALLERY FILTERS ---- */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border: 1.5px solid var(--border);
  background: white; border-radius: 2px; font-family: var(--sans);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; transition: all 0.2s; color: var(--text-medium);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--navy); color: var(--navy); background: rgba(30,34,85,0.06); }
.gallery-grid-masonry { columns: 3; column-gap: 1rem; }
.gallery-grid-masonry .gallery-item { break-inside: avoid; margin-bottom: 1rem; aspect-ratio: unset; }
.gallery-grid-masonry .gallery-item img { width: 100%; height: auto; display: block; }
.gallery-note {
  background: var(--gold-pale); border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem; border-radius: 0 2px 2px 0; margin-bottom: 2.5rem;
}
.gallery-note p { margin: 0; font-size: 0.97rem; }

/* ---- DIVIDER ---- */
.section-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 1rem 0 1.75rem;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-img::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .service-layout, .service-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .gallery-grid-masonry { columns: 2; }
}
@media (max-width: 720px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(30,34,85,0.12);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius: 2px; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .gallery-grid-masonry { columns: 1; }
}
