/* =============================================
   SASSENACH LANDSCAPE — SCOTTISH HERALDIC THEME
   Color palette drawn from logo: rearing unicorn,
   St. Andrew's Cross, thistle, silver/charcoal
   shield, Celtic knotwork accents
   ============================================= */

:root {
  /* Core palette — extracted from the logo */
  --navy:           #1e3a5f;   /* Deep Scottish blue (St. Andrew's Cross) */
  --navy-deep:      #0f2640;   /* Darker navy for depth */
  --royal-purple:   #6b3fa0;   /* Thistle purple */
  --royal-purple-light: #8b5fbf;
  --gold:           #c9a84c;   /* Metallic gold (shield banner) */
  --gold-light:     #e0c06a;   /* Light gold for hovers */
  --silver:         #9a9a9a;   /* Silver accent (shield metallic) */
  --silver-light:   #b8b8b8;   /* Light silver */
  --charcoal:       #3a3a3a;   /* Charcoal shield */
  --dark:           #0d1b2a;   /* Near-black for dark sections */
  --cream:          #f5f0e8;   /* Cream (from flag cross) */
  --parchment:      #faf7f2;   /* Off-white parchment */
  --text:           #2a2a2a;   /* Body text */
  --text-light:     #6a6a6a;   /* Muted text */
  --white:          #ffffff;

  /* Semantic aliases */
  --primary:        var(--navy);
  --primary-deep:   var(--navy-deep);
  --accent:         var(--royal-purple);
  --accent-warm:    var(--gold);
  --text-inverse:   var(--cream);
  --bg-light:       var(--parchment);
}

/* ==========================
   RESET & BASE
   ========================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--parchment);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==========================
   NAVIGATION
   ========================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold);
  box-shadow:
    0 2px 20px rgba(0,0,0,0.3),
    0 1px 0 rgba(201, 168, 76, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* Nav brand — logo + text */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 48px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.nav-tagline {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-links a:hover::after {
  width: 60%;
  left: 20%;
}

.nav-links a:hover {
  color: var(--cream);
  background: rgba(201, 168, 76, 0.08);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #b89840 100%);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 3px;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}

.nav-links .nav-cta::after { display: none; }

.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ==========================
   HERO
   ========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 900px 600px at 50% 40%, rgba(107, 63, 160, 0.12) 0%, transparent 60%),
    linear-gradient(170deg, var(--dark) 0%, var(--navy-deep) 30%, var(--navy) 55%, #1a3354 80%, #253b57 100%);
  overflow: hidden;
  padding: 120px 32px 80px;
}

/* Celtic-inspired decorative background pattern */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 3px at 20% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 100%),
    radial-gradient(circle 2px at 70% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 100%),
    radial-gradient(circle 4px at 85% 60%, rgba(107, 63, 160, 0.07) 0%, transparent 100%),
    radial-gradient(circle 3px at 40% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 100%),
    radial-gradient(circle 2px at 10% 70%, rgba(107, 63, 160, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

/* Subtle saltire (St. Andrew's Cross) background accent */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 42%, rgba(201, 168, 76, 0.03) 48%, rgba(201, 168, 76, 0.05) 50%, rgba(201, 168, 76, 0.03) 52%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, rgba(201, 168, 76, 0.03) 48%, rgba(201, 168, 76, 0.05) 50%, rgba(201, 168, 76, 0.03) 52%, transparent 58%);
  pointer-events: none;
}

/* Bottom shield-arch border */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right,
    transparent,
    var(--charcoal) 15%,
    var(--gold) 40%,
    var(--gold-light) 50%,
    var(--gold) 60%,
    var(--charcoal) 85%,
    transparent
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 840px;
}

/* Hero logo crest */
.hero-crest {
  margin: 0 auto 32px;
  width: 100px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
  opacity: 0.9;
}

.hero-kicker {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(245, 240, 232, 0.72);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* Celtic knotwork divider — thistle center */
.hero-divider {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.divider-knot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  opacity: 0.5;
}

.divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  position: relative;
}

.divider-line--right {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* Knotwork end caps on divider */
.divider-line::before {
  content: '';
  position: absolute;
  right: -2px;
  top: -2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.divider-line--right::before {
  right: auto;
  left: -2px;
}

.divider-diamond {
  font-size: 10px;
}

/* ==========================
   BUTTONS — Heraldic Style
   ========================== */

.btn-primary {
  display: inline-block;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 40%, #b89840 100%);
  color: var(--navy-deep);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow:
    0 2px 12px rgba(201, 168, 76, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
}

.btn-primary:hover {
  background: linear-gradient(160deg, #e8cc78 0%, var(--gold-light) 40%, var(--gold) 100%);
  color: var(--dark);
  box-shadow:
    0 6px 24px rgba(201, 168, 76, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.4);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.08);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ==========================
   CELTIC SECTION DIVIDER
   ========================== */

.celtic-border {
  height: 4px;
  background: linear-gradient(to right,
    transparent,
    var(--charcoal) 10%,
    var(--gold) 35%,
    var(--gold-light) 50%,
    var(--gold) 65%,
    var(--charcoal) 90%,
    transparent
  );
  position: relative;
}

.celtic-border::before,
.celtic-border::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--dark);
}

.celtic-border::before { left: calc(50% - 5px); }
.celtic-border::after { display: none; }

/* ==========================
   ABOUT
   ========================== */

.about {
  padding: 120px 32px;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  position: relative;
}

/* Celtic knotwork top border */
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    transparent,
    var(--charcoal) 15%,
    var(--gold) 40%,
    var(--gold-light) 50%,
    var(--gold) 60%,
    var(--charcoal) 85%,
    transparent
  );
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
}

.about-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal-purple);
  margin-bottom: 16px;
  font-weight: 600;
}

.about-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-text em {
  font-style: italic;
  color: var(--royal-purple);
  font-weight: 600;
}

/* ==========================
   SERVICES
   ========================== */

.services {
  padding: 120px 32px;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(107, 63, 160, 0.06) 0%, transparent 60%),
    linear-gradient(170deg, var(--dark) 0%, var(--navy-deep) 100%);
  position: relative;
}

/* Celtic border accent at top */
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    transparent,
    var(--royal-purple) 30%,
    var(--gold) 50%,
    var(--royal-purple) 70%,
    transparent
  );
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal-purple-light);
  margin-bottom: 16px;
  font-weight: 600;
}

.services-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

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

.service-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-top: 3px solid rgba(201, 168, 76, 0.25);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201, 168, 76, 0.4);
  border-top-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}

/* Heraldic corner accent */
.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 0.8;
}

.service-icon {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.75;
  font-weight: 300;
}

/* ==========================
   WHY
   ========================== */

.why {
  padding: 120px 32px;
  background: var(--parchment);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    transparent,
    var(--charcoal) 15%,
    var(--gold) 40%,
    var(--gold-light) 50%,
    var(--gold) 60%,
    var(--charcoal) 85%,
    transparent
  );
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
}

.why-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal-purple);
  margin-bottom: 16px;
  font-weight: 600;
}

.why-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 64px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 2px;
  transition: background 0.2s;
}

.why-item:hover {
  background: rgba(30, 58, 95, 0.03);
}

.why-number {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
  min-width: 40px;
}

.why-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.why-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ==========================
   CLOSING / CTA
   ========================== */

.closing {
  padding: 120px 32px;
  background:
    radial-gradient(ellipse 800px 500px at 50% 100%, rgba(107, 63, 160, 0.1) 0%, transparent 60%),
    linear-gradient(170deg, var(--navy) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right,
    transparent,
    var(--royal-purple) 30%,
    var(--gold) 50%,
    var(--royal-purple) 70%,
    transparent
  );
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-knot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0.5;
}

.closing-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 400;
}

.closing-contact p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.5px;
}

/* ==========================
   FOOTER
   ========================== */

.footer {
  padding: 48px 32px 32px;
  background:
    linear-gradient(180deg, var(--dark) 0%, #080f19 100%);
  border-top: 3px solid var(--gold);
  position: relative;
}

/* Subtle metallic sheen on footer */
.footer::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(154, 154, 154, 0.3) 30%,
    rgba(184, 184, 184, 0.4) 50%,
    rgba(154, 154, 154, 0.3) 70%,
    transparent
  );
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo-link {
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.footer-logo-link:hover {
  opacity: 1;
  transform: scale(1.03);
}

.footer-logo-img {
  width: 80px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 1.5px;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 3px;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
  text-align: center;
  letter-spacing: 0.5px;
}

/* ==========================
   INNER PAGE HERO
   ========================== */

.page-hero {
  background:
    radial-gradient(ellipse 600px 400px at 30% 50%, rgba(107, 63, 160, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--navy-deep) 40%, var(--navy) 100%);
  padding: 160px 32px 100px;
  text-align: center;
  position: relative;
}

/* Saltire watermark on inner pages */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 44%, rgba(201, 168, 76, 0.025) 49%, rgba(201, 168, 76, 0.035) 50%, rgba(201, 168, 76, 0.025) 51%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, rgba(201, 168, 76, 0.025) 49%, rgba(201, 168, 76, 0.035) 50%, rgba(201, 168, 76, 0.025) 51%, transparent 56%);
  pointer-events: none;
}

/* Bottom heraldic border */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right,
    transparent,
    var(--charcoal) 15%,
    var(--gold) 40%,
    var(--gold-light) 50%,
    var(--gold) 60%,
    var(--charcoal) 85%,
    transparent
  );
}

.page-hero--short {
  padding: 130px 32px 80px;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.page-hero-badge {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================
   CONTENT SECTION
   ========================== */

.content-section {
  padding: 100px 32px;
  background: var(--parchment);
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.content-lead {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.content-lead p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.9;
}

/* ==========================
   SERVICE DETAIL GRID
   ========================== */

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}

.service-detail-card {
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(250, 247, 242, 0.5) 100%);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-top: 3px solid rgba(30, 58, 95, 0.15);
  border-radius: 2px;
  padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.service-detail-card:hover {
  border-color: var(--gold);
  border-top-color: var(--gold);
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.08);
  transform: translateY(-2px);
}

/* Heraldic corner accent */
.service-detail-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-detail-card:hover::before {
  opacity: 0.6;
}

.service-detail-icon {
  color: var(--royal-purple);
  font-size: 12px;
  margin-bottom: 18px;
  opacity: 0.7;
  letter-spacing: 2px;
}

.service-detail-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.service-detail-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ==========================
   CONTENT CTA BLOCK
   ========================== */

.content-cta-block {
  text-align: center;
  padding: 64px 32px;
  background:
    radial-gradient(ellipse 400px 200px at 50% 100%, rgba(107, 63, 160, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 2px;
  max-width: 700px;
  margin: 0 auto;
  border-top: 3px solid var(--gold);
  position: relative;
}

.content-cta-block h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.content-cta-block p {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.85;
  margin-bottom: 32px;
  font-size: 1.15rem;
}

/* ==========================
   QUOTE FORM
   ========================== */

.quote-section {
  padding: 80px 32px;
  background: var(--parchment);
}

.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quote-form {
  background:
    linear-gradient(180deg, white 0%, #fdfcfa 100%);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.05);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
  font-family: 'Outfit', sans-serif;
}

.form-required { color: var(--royal-purple); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(30, 58, 95, 0.15);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--parchment);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  background: #fde8e8;
  color: #8b1a1a;
  border: 1px solid #f5c6c6;
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 16px;
  font-family: 'Cinzel', serif;
}

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.quote-success {
  text-align: center;
  padding: 64px 32px;
  background: white;
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(30, 58, 95, 0.05);
}

.quote-success-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.15);
}

.quote-success h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.quote-success p {
  color: var(--text-light);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 auto;
}

/* ==========================
   PORTFOLIO
   ========================== */

.portfolio-section { padding: 80px 32px; }
.portfolio-inner { max-width: 1200px; }

.portfolio-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(30, 58, 95, 0.15);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-btn:hover,
.filter-btn--active {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(30, 58, 95, 0.04);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.portfolio-card {
  border: 1px solid rgba(30, 58, 95, 0.08);
  border-radius: 2px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.3s, transform 0.3s;
}

.portfolio-card:hover {
  box-shadow: 0 8px 36px rgba(30, 58, 95, 0.12);
  transform: translateY(-3px);
}

.portfolio-img {
  height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  position: relative;
}

/* Subtle shield watermark in portfolio cards */
.portfolio-img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 70px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.portfolio-img--purple {
  background: linear-gradient(160deg, #2d1a4a, var(--royal-purple));
}

.portfolio-img--slate {
  background: linear-gradient(160deg, #1a2a3a, #2d3a4a);
}

.portfolio-img-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
}

.portfolio-img-icon {
  color: var(--gold);
  font-size: 10px;
}

.portfolio-card-body { padding: 24px; }

.portfolio-tag {
  display: inline-block;
  background: rgba(30, 58, 95, 0.08);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.portfolio-tag--landscape {
  background: rgba(107, 63, 160, 0.1);
  color: var(--royal-purple);
}

.portfolio-tag--maintenance {
  background: rgba(201, 168, 76, 0.1);
  color: #8a6b1e;
}

.portfolio-card-body h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.portfolio-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.portfolio-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid rgba(30, 58, 95, 0.08);
}

.portfolio-cta-note {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

/* ==========================
   SERVICE AREA
   ========================== */

.area-counties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}

.area-county-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.area-county-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.15);
}

.area-county-dot--purple {
  background: var(--royal-purple);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.15);
}

.area-county h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.area-county-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.area-cities { list-style: none; padding: 0; }

.area-cities li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.07);
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.area-city-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.area-note-block {
  background:
    linear-gradient(180deg, var(--cream) 0%, rgba(250, 247, 242, 0.5) 100%);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 2px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 64px;
  border-top: 3px solid var(--gold);
}

.area-note-icon {
  color: var(--royal-purple);
  font-size: 16px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.area-note-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.area-note-block p {
  color: var(--text-light);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}

.area-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-info-card {
  padding: 28px 24px;
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 2px;
  border-top: 2px solid rgba(201, 168, 76, 0.3);
  transition: border-top-color 0.2s, box-shadow 0.2s;
}

.area-info-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.area-info-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.area-info-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
}

/* ==========================
   THISTLE SECTION DIVIDER
   (reusable between sections)
   ========================== */

.thistle-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}

.thistle-divider .td-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.thistle-divider .td-icon {
  color: var(--royal-purple);
  opacity: 0.4;
  display: flex;
}

/* ==========================
   RESPONSIVE
   ========================== */

@media (max-width: 900px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(13, 27, 42, 0.98);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  }

  .nav-links--open { display: flex; }

  .nav-links a {
    padding: 13px 28px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a::after { display: none; }

  .nav-links .nav-cta {
    margin: 14px 20px 0;
    text-align: center;
    border-radius: 3px;
    border-bottom: none;
  }

  .services-detail-grid { grid-template-columns: 1fr 1fr; }
  .area-counties { grid-template-columns: 1fr; gap: 40px; }
  .area-info-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }

  .footer-main { flex-direction: column; align-items: flex-start; }
  .footer-logo-img { width: 60px; }

  .hero-crest { width: 80px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 12px 20px; }
  .nav-name { font-size: 16px; }
  .nav-tagline { display: none; }
  .nav-logo-img { width: 40px; }

  .hero { padding: 100px 24px 60px; min-height: 90vh; }
  .about, .services, .why, .closing { padding: 80px 24px; }

  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-item { gap: 16px; padding: 16px; }
  .why-number { font-size: 1.8rem; min-width: 32px; }

  .service-card { padding: 32px 24px; }

  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-crest { width: 70px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .about-heading, .services-heading, .why-heading, .closing-heading { font-size: 1.8rem; }

  .services-detail-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .area-info-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 20px; }

  .page-hero { padding: 120px 24px 80px; }
  .page-hero--short { padding: 100px 24px 60px; }
  .content-section { padding: 60px 24px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .area-note-block { padding: 36px 24px; }

  .footer-main { gap: 20px; }
  .hero-crest { width: 60px; margin-bottom: 24px; }
}
