/* ============================================================
   Elizabeth Wiese & Associates — Main Stylesheet
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
/* Colour palette derived from the Elizabeth Wiese & Associates logo:
   Teal (#3dada0) — left ampersand stroke
   Silver (#a8a8a8) — right ampersand stroke
   Charcoal (#2c2c2c) — logotype text
   Off-white (#f5f7f7) — clean background with cool teal undertone */
:root {
  --navy:        #1f4a47;   /* deep teal-charcoal (replaces navy)        */
  --navy-dark:   #153331;   /* darker teal-charcoal (replaces navy-dark)  */
  --gold:        #3dada0;   /* logo teal (replaces gold)                  */
  --gold-light:  #5ec4b8;   /* lighter teal hover (replaces gold-light)   */
  --gold-pale:   #e6f4f3;   /* very pale teal tint (replaces gold-pale)   */
  --cream:       #f2f6f6;   /* cool off-white with teal hint (replaces cream) */
  --white:       #ffffff;
  --gray-light:  #edf1f1;   /* cool light grey (replaces gray-light)      */
  --gray:        #7a8f8e;   /* muted teal-grey (replaces gray)            */
  --gray-dark:   #3d4f4e;   /* dark teal-grey (replaces gray-dark)        */
  --text:        #2c2c2c;   /* logo charcoal text colour                  */
  --border:      #d4e0df;   /* cool teal-tinted border (replaces border)  */
  --silver:      #a8a8a8;   /* logo silver (accent use)                   */
  --header-h:    155px;
  --transition:  0.25s ease;
  --shadow-sm:   0 2px 10px rgba(31,74,71,0.08);
  --shadow-md:   0 8px 30px rgba(31,74,71,0.12);
  --shadow-lg:   0 16px 50px rgba(31,74,71,0.16);
  --radius:      3px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ===== UTILITY ===== */
.gold-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}
/* alias classes */
.text-gold   { color: var(--gold); }
.text-teal   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--cream); }


/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
}
.logo-wrap img {
  height: 130px;
  width: auto;
  display: block;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* Desktop nav */
#main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-list > li:hover > a,
.nav-list > li.active > a { color: var(--gold); }
.nav-list > li:hover > a::after,
.nav-list > li.active > a::after { transform: scaleX(1); }
.arrow { font-size: 9px; margin-top: 1px; opacity: 0.6; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--cream); color: var(--gold); padding-left: 26px; }

/* Header phone */
.header-phone {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid var(--gold);
  padding: 9px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
  margin-left: 8px;
}
.header-phone:hover { background: var(--gold); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  z-index: 900;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-list { padding: 8px 0 30px; }
.mobile-nav-list > li > a,
.mobile-nav-list .mob-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.mobile-nav-list > li > a:hover,
.mobile-nav-list .mob-toggle:hover { background: var(--cream); color: var(--gold); }
.mob-sub { display: none; }
.mob-sub.open { display: block; background: var(--cream); }
.mob-sub li a {
  display: block;
  padding: 11px 24px 11px 36px;
  font-size: 14px;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--border);
}
.mob-sub li a:hover { color: var(--gold); }

.mob-call {
  padding: 20px 20px 24px !important;
  border-bottom: none !important;
}
.mob-call a {
  display: block !important;
  padding: 16px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-align: center !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.3px !important;
  text-transform: none !important;
  border-bottom: none !important;
  white-space: nowrap;
}
.mob-call a:hover {
  background: var(--gold-light) !important;
  color: var(--white) !important;
}


/* ============================================================
   HERO SLIDER (Homepage)
   ============================================================ */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,74,71,0.80) 0%, rgba(31,74,71,0.30) 100%);
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  color: var(--white);
}
.hero-content h1 {
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--white);
  font-weight: 700;
  max-width: 620px;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.92);
  max-width: 520px;
  margin-bottom: 32px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); border-color: var(--gold); }


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 60px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,173,160,0.15) 0%, transparent 70%);
}
.page-hero .breadcrumb {
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(26px, 4vw, 46px);
  margin-bottom: 0;
}
.page-hero .sub-label {
  position: relative;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
}


/* ============================================================
   SECTION BASICS
   ============================================================ */
.section { padding: 80px 24px; }
.section-sm { padding: 50px 24px; }
.section-bg { background: var(--cream); }
.section-navy { background: var(--navy); }

.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 620px; }
.section-header.center { text-align: center; }
.section-header.center .gold-bar { margin: 0 auto 24px; }
.section-header.center p { margin-left: auto; margin-right: auto; }


/* ============================================================
   SERVICE CARDS (grid)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 34px 28px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--navy);
}
.service-card p { font-size: 15px; color: var(--gray-dark); margin-bottom: 22px; }


/* ============================================================
   IMAGE + TEXT SPLIT
   ============================================================ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section.reverse .split-img { order: 2; }
.split-section.reverse .split-text { order: 1; }
.split-img img { width: 100%; border: 4px solid var(--gold); }
.split-text h2 { font-size: clamp(24px, 2.8vw, 36px); margin-bottom: 20px; }
.split-text p { font-size: 16px; color: var(--gray-dark); margin-bottom: 16px; }
.split-text ul {
  list-style: none;
  margin: 16px 0 28px;
}
.split-text ul li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--border);
  padding-left: 22px;
  position: relative;
}
.split-text ul li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 14px;
}


/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 52px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(22px, 3vw, 34px); margin-bottom: 6px; }
.cta-band h2 a { color: var(--gold-light); }
.cta-band h2 a:hover { text-decoration: underline; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta-gold {
  background: var(--gold);
  padding: 36px 24px;
  text-align: center;
}
.cta-gold h2 { color: var(--white); font-size: clamp(18px, 2.5vw, 28px); }
.cta-gold h2 a { color: var(--white); font-style: italic; }
.cta-gold h2 a:hover { text-decoration: underline; }


/* ============================================================
   WILLS CARDS (image cards)
   ============================================================ */
.wills-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.wills-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.wills-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.wills-card:hover img { transform: scale(1.04); }
.wills-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,74,71,0.95) 0%, transparent 100%);
  padding: 30px 20px 18px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.wills-card a {
  position: absolute;
  inset: 0;
}


/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.team-card { background: var(--cream); border-top: 4px solid var(--gold); }
.team-card-img { overflow: hidden; aspect-ratio: 16/9; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; }
.team-card:hover .team-card-img img { transform: scale(1.04); }
.team-card-body { padding: 28px 30px 30px; }
.team-card-body h3 { font-size: 24px; margin-bottom: 4px; }
.team-card-body .role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Source Sans 3', sans-serif;
}
.team-card-body p { font-size: 15px; color: var(--gray-dark); margin-bottom: 12px; line-height: 1.75; }
.team-card-body .quals { margin-top: 16px; }
.team-card-body .quals h4 { font-size: 14px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 8px; margin-top: 14px; }
.team-card-body .quals ul { list-style: disc; padding-left: 18px; }
.team-card-body .quals ul li { font-size: 14px; color: var(--gray-dark); margin-bottom: 4px; }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; padding: 80px 0; }

.contact-info h3 { font-size: 28px; margin-bottom: 10px; }
.contact-info .sub { color: var(--gray); font-size: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; }
.contact-detail-body a { font-size: 16px; color: var(--navy); font-weight: 600; }
.contact-detail-body a:hover { color: var(--gold); }
.contact-detail-body span { font-size: 15px; color: var(--gray-dark); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; margin-top: 8px; font-size: 15px; }
.hours-day { color: var(--gray-dark); }
.hours-time { color: var(--navy); font-weight: 600; }

/* Map */
.map-wrap { margin-top: 32px; border: 3px solid var(--gold); overflow: hidden; }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: none; }

/* YP logo */
.contact-links { margin-top: 24px; }
.contact-links a img { height: 50px; }

/* Form */
.contact-form-wrap h3 { font-size: 28px; margin-bottom: 10px; }
.contact-form-wrap .sub { color: var(--gray); font-size: 16px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif;
  transition: all var(--transition);
}
.btn-submit:hover { background: var(--gold); border-color: var(--gold); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  display: none;
  font-weight: 600;
}
.form-msg.success { background: #d4eeec; color: #1a5450; display: block; border: 1px solid #b0dcd8; }
.form-msg.error   { background: #fdecea; color: #7c2020; display: block; border: 1px solid #f5c6c6; }


/* ============================================================
   CONTENT PAGES (service pages)
   ============================================================ */
.content-section { padding: 80px 24px; }
.content-body { display: grid; grid-template-columns: 1fr 340px; gap: 70px; align-items: start; }
.content-body.no-sidebar { grid-template-columns: 1fr; max-width: 860px; margin: 0 auto; }
.content-main h2 { font-size: 26px; margin: 36px 0 14px; color: var(--navy); }
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: 16px; color: var(--gray-dark); margin-bottom: 18px; line-height: 1.8; }
.content-main ul {
  list-style: none;
  margin: 0 0 24px;
}
.content-main ul li {
  font-size: 16px;
  color: var(--gray-dark);
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.content-main ul li:last-child { border-bottom: none; }
.content-main ul li::before {
  content: '›';
  color: var(--gold);
  position: absolute;
  left: 6px;
  font-size: 20px;
  line-height: 1;
  top: 7px;
  font-weight: 700;
}
.content-main .content-img {
  margin: 30px 0;
  border: 4px solid var(--gold);
}
.content-main strong { color: var(--navy); }
.content-main a { color: var(--gold); font-weight: 600; }
.content-main a:hover { text-decoration: underline; }

/* Sidebar */
.content-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-box {
  background: var(--cream);
  padding: 28px;
  border-top: 3px solid var(--gold);
  margin-bottom: 24px;
}
.sidebar-box h4 { font-size: 17px; margin-bottom: 16px; }
.sidebar-box ul li { margin-bottom: 8px; }
.sidebar-box ul li a {
  font-size: 14px;
  color: var(--navy);
  transition: color var(--transition);
  padding-left: 14px;
  position: relative;
}
.sidebar-box ul li a::before {
  content: '›';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.sidebar-box ul li a:hover { color: var(--gold); }
.sidebar-contact {
  background: var(--navy);
  padding: 28px;
  color: rgba(255,255,255,0.85);
}
.sidebar-contact h4 { color: var(--white); font-size: 17px; margin-bottom: 16px; }
.sidebar-contact p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.sidebar-contact a.phone { color: var(--gold-light); font-size: 18px; font-weight: 700; display: block; margin-bottom: 16px; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.value-item { text-align: center; padding: 32px 24px; background: var(--cream); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-item h3 { font-size: 20px; margin-bottom: 10px; }
.value-item p { font-size: 15px; color: var(--gray-dark); }


/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--navy-dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 18px; }
.footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 8px; display: flex; gap: 8px; align-items: baseline; }
.footer-contact-item .icon { color: var(--gold); font-size: 13px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(3px); }
.footer-hours { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: -6px; }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom-inner a:hover { color: var(--gold); }


/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content { padding: 70px 0; }
.privacy-content h2 { font-size: 22px; margin: 32px 0 12px; }
.privacy-content p, .privacy-content li { font-size: 16px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 12px; }


/* ============================================================
   404
   ============================================================ */
.not-found { text-align: center; padding: 120px 24px; }
.not-found .code { font-size: 120px; font-family: 'Playfair Display', serif; color: var(--navy); opacity: 0.12; line-height: 1; }
.not-found h2 { font-size: 36px; margin-bottom: 16px; }
.not-found p { color: var(--gray); margin-bottom: 32px; font-size: 17px; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .content-body { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section .split-img { order: -1; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  #main-nav { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .logo-wrap img { height: 56px; }

  .header-inner { position: relative; padding: 0 16px; }
  .hamburger {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .hero-slider { height: 440px; }
  .hero-content { padding: 0 28px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 16px; }

  .section { padding: 56px 16px; }
  .section-sm { padding: 36px 16px; }
  .container { padding: 0 16px; }
  .container-narrow { padding: 0 16px; }

  .cta-band { padding: 40px 16px; }
  .contact-layout { padding: 50px 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .logo-wrap img { height: 50px; }
  .logo-est { font-size: 9px; }
  .hero-slider { height: 360px; }
  .page-hero { padding: 44px 16px 38px; }
  .wills-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
