/* ============================================================
   MANCHESTER TRADE LTD — Master Stylesheet
   File: style.css
   Covers: index.html, about.html, services.html, contact.html
   ============================================================ */


/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #1a2340;
  --navy-light: #243058;
  --gold:       #b8963e;
  --gold-light: #d4af62;
  --cream:      #f9f7f3;
  --white:      #ffffff;
  --gray:       #6b7280;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}


/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 48px;
  color: var(--navy);
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(26,35,64,0.07);
}

.nav-logo-img {
  width: 300px;
  height: 155px;
  object-fit: contain;
object-position: center;
  display: block;
  padding: 12px 12px;
/*  width: 300px;
  height: 250px;
  object-fit: contain;
  object-position: left center;
  display: block;
  padding: 12px 0;*/
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 80px;
  list-style: none;
  padding: 0px 70px;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-active {
  color: var(--gold) !important;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--white);
  padding: 48px 5%;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 2px solid var(--gold);
/*    display: flex;*/
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 15px;
  color: var(--gray);
  text-align: center;
}


/* ============================================================
   BREADCRUMB (about, services, contact pages)
   ============================================================ */
.breadcrumb {
  padding: 14px 5%;
  background: var(--cream);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(26,35,64,0.08);
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span    { color: var(--gold); }


/* ============================================================
   PAGE HERO (about, services, contact pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,62,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,62,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 24px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.8;
}


/* ============================================================
   INDEX — HERO
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,62,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,62,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(184,150,62,0.2);
  padding-top: 40px;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}


/* ============================================================
   INDEX — ABOUT SECTION
   ============================================================ */
.about {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about h2 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 24px;
}

.about p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.9;
}


/* ============================================================
   INDEX — SERVICES GRID
   ============================================================ */
.services {
  background: var(--cream);
  padding: 100px 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,35,64,0.08);
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: background 0.3s;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  color: rgba(184,150,62,0.15);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}

.service-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  transition: color 0.3s;
}

.service-card:hover                { background: var(--navy); }
.service-card:hover .service-num   { color: rgba(184,150,62,0.25); }
.service-card:hover h3             { color: var(--gold); }
.service-card:hover p              { color: rgba(255,255,255,0.6); }


/* ============================================================
   INDEX — WHY US
   ============================================================ */
.why {
  padding: 100px 5%;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1400&q=80') center/cover no-repeat;
  opacity: 0.08;
}

.why .section-header {
  position: relative;
  z-index: 2;
}

.why .section-header h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.why-card {
  border: 1px solid rgba(184,150,62,0.25);
  padding: 40px;
  position: relative;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.why-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}


/* ============================================================
   INDEX — PROCESS
   ============================================================ */
.process {
  padding: 100px 5%;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 20px;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.8;
}


/* ============================================================
   STATS BAND (index + about pages)
   ============================================================ */
.stats-band {
  background: var(--navy);
  padding: 64px 5%;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}

.stat-block {
  background: var(--navy);
  padding: 40px;
  text-align: center;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}


/* ============================================================
   INDEX — CONTACT SIMPLE SECTION
   ============================================================ */
.contact-simple {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.contact-simple-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80') center/cover no-repeat;
  opacity: 0.06;
}

.contact-simple-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-simple-text h2 {
  font-size: 44px;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-simple-text p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.9;
}

.contact-simple-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,150,62,0.2);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  transition: background 0.2s;
}

.cs-card:hover {
  background: rgba(184,150,62,0.07);
}

.cs-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,62,0.12);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(184,150,62,0.25);
}

.cs-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-body strong {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
/*  color: rgba(255,255,255,0.4);*/
}

.cs-body a {
  font-size: 16px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.2s;
}

.cs-body a:hover { color: var(--gold-light); }

.cs-body span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
/*  color: rgba(255,255,255,0.35);*/
}

.cs-address {
  font-size: 14px !important;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.7;
}


/* ============================================================
   ABOUT PAGE — STORY SECTION
   ============================================================ */
.story {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}

.story-img {
  position: relative;
}

.story-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.story-badge {
  position: absolute;
  top: 32px;
  left: -28px;
  background: var(--navy);
  padding: 20px 24px;
  text-align: center;
  border-left: 3px solid var(--gold);
}

.story-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.story-badge-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

.story-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.9;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(184,150,62,0.2);
}

.sh-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.sh-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}


/* ============================================================
   ABOUT PAGE — VALUES
   ============================================================ */
.values {
  background: var(--cream);
  padding: 100px 5%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(26,35,64,0.08);
}

.value-card {
  background: var(--white);
  padding: 48px 32px;
  transition: background 0.3s;
}

.value-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.value-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
  transition: color 0.3s;
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  transition: color 0.3s;
}

.value-card:hover                { background: var(--navy); }
.value-card:hover .value-icon    { color: var(--gold-light); }
.value-card:hover h3             { color: var(--gold); }
.value-card:hover p              { color: rgba(255,255,255,0.55); }


/* ============================================================
   ABOUT PAGE — TEAM
   ============================================================ */
.team {
  background: var(--white);
  padding: 100px 5%;
}

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

.team-card {
  background: var(--cream);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,64,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.7;
}

.team-info {
  padding: 24px;
  border-top: 2px solid var(--gold);
}

.team-info h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-info span {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}


/* ============================================================
   ABOUT PAGE — GLOBAL REACH
   ============================================================ */
.reach {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.reach-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80') center/cover no-repeat;
  opacity: 0.07;
}

.reach-inner {
  position: relative;
  z-index: 2;
}

.reach .section-header h2 {
  color: var(--white);
}

.reach-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}

.reach-region {
  background: rgba(255,255,255,0.03);
  padding: 40px 32px;
  border-top: 1px solid rgba(184,150,62,0.15);
  transition: background 0.3s;
}

.reach-region:hover {
  background: rgba(184,150,62,0.08);
}

.region-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.reach-region h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 10px;
}

.reach-region p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}


/* ============================================================
   SERVICES PAGE — OVERVIEW
   ============================================================ */
.overview {
  background: var(--white);
  padding: 100px 5%;
}

.overview-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text h2 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 16px;
}

.overview-text p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(26,35,64,0.08);
}

.ov-stat {
  background: var(--cream);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s;
}

.ov-stat:hover {
  background: var(--navy);
}

.ov-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}

.ov-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
  transition: color 0.3s;
}

.ov-stat:hover .ov-label {
  color: rgba(255,255,255,0.5);
}


/* ============================================================
   SERVICES PAGE — SERVICE BLOCKS
   ============================================================ */
.svc-block {
  padding: 100px 5%;
}

.svc-block--light { background: var(--cream); }
.svc-block--dark  { background: var(--navy); }

.svc-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.svc-block-inner--reverse {
  direction: rtl;
}

.svc-block-inner--reverse > * {
  direction: ltr;
}

.svc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 600;
  color: rgba(184,150,62,0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.svc-num--dark {
  color: rgba(184,150,62,0.2);
}

.svc-content h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 20px;
}

.svc-content p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

.svc-content--dark h2 { color: var(--white); }
.svc-content--dark p  { color: rgba(255,255,255,0.55); }

.svc-list {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.svc-list li {
  font-size: 13px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.svc-list--dark li { color: rgba(255,255,255,0.5); }

.svc-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  border: 1px solid transparent;
}

.svc-cta:hover {
  background: var(--gold);
}

.svc-cta--dark {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.svc-cta--dark:hover {
  background: var(--gold);
  color: var(--white);
}

.svc-img {
  position: relative;
}

.svc-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.svc-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.svc-img-accent--left {
  right: auto;
  left: -16px;
}


/* ============================================================
   SERVICES PAGE — TAILORED APPROACH
   ============================================================ */
.tailored {
  background: var(--white);
  padding: 100px 5%;
}

.tailored-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(26,35,64,0.08);
}

.tailored-card {
  background: var(--white);
  padding: 48px 32px;
  transition: background 0.3s;
}

.tailored-card:hover { background: var(--navy); }

.tc-step {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: rgba(184,150,62,0.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.tailored-card:hover .tc-step { color: rgba(184,150,62,0.25); }

.tailored-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
  transition: color 0.3s;
}

.tailored-card:hover h3 { color: var(--gold); }

.tailored-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  transition: color 0.3s;
}

.tailored-card:hover p { color: rgba(255,255,255,0.55); }


/* ============================================================
   CONTACT PAGE — MAIN LAYOUT
   ============================================================ */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  background: var(--white);
}

.contact-left {
  background: var(--cream);
  padding: 80px 5%;
  border-right: 1px solid rgba(26,35,64,0.08);
}

.contact-intro h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-intro p {
  color: var(--gray);
  line-height: 1.9;
  font-size: 15px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}

.info-card:hover {
  box-shadow: 0 4px 20px rgba(26,35,64,0.08);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-body strong {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.info-body a {
  font-size: 15px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  transition: color 0.2s;
}

.info-body a:hover { color: var(--navy); }

.info-body span {
  font-size: 12px;
  color: var(--gray);
}

.info-body .address {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.7;
}

.map-wrap {
  margin-top: 32px;
  border: 1px solid rgba(26,35,64,0.1);
  overflow: hidden;
}

.map-wrap iframe {
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.contact-right {
  background: var(--white);
  padding: 80px 5%;
}

.contact-form-wrap {
  max-width: 560px;
}

.form-heading h2 {
  font-size: 38px;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}

.req { color: var(--gold); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(26,35,64,0.15);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.08);
}

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

.form-consent { margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 17px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover    { background: var(--gold); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  color: #2e7d32;
  background: #f0faf0;
  border: 1px solid #a5d6a7;
  padding: 14px 20px;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}

.form-error {
  display: none;
  color: #c62828;
  background: #fff5f5;
  border: 1px solid #ef9a9a;
  padding: 14px 20px;
  font-size: 14px;
  margin-top: 16px;
  text-align: center;
}


/* ============================================================
   CONTACT PAGE — OFFICE HOURS STRIP
   ============================================================ */
.hours-strip {
  background: var(--navy);
  padding: 48px 5%;
  border-top: 1px solid rgba(184,150,62,0.15);
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hours-item {
  text-align: center;
  padding: 0 48px;
}

.hours-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.hours-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}

.hours-divider {
  width: 1px;
  height: 48px;
  background: rgba(184,150,62,0.2);
  flex-shrink: 0;
}


/* ============================================================
   SHARED CTA BANNER (about + services pages)
   ============================================================ */
.cta-banner {
  background: var(--cream);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80') center/cover no-repeat;
  opacity: 0.04;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: 48px;
  color: var(--navy);
  margin: 16px 0 24px;
}

.cta-banner p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.8;
}


/* ============================================================
   RESPONSIVE — Tablet (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  .about, .story, .contact-simple-inner, .overview-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent, .story-img-accent, .svc-img-accent  { display: none; }
  .story-badge      { left: 16px; top: 16px; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .reach-regions    { grid-template-columns: 1fr 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .stats-row        { grid-template-columns: 1fr 1fr; }
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .tailored-grid    { grid-template-columns: 1fr 1fr; }
  .svc-list         { grid-template-columns: 1fr; }
  .svc-block-inner, .svc-block-inner--reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
  .svc-img          { order: -1; }
  .contact-main     { grid-template-columns: 1fr; }
  .contact-left     { border-right: none; border-bottom: 1px solid rgba(26,35,64,0.08); padding: 60px 5%; }
  .contact-right    { padding: 60px 5%; }
  .contact-form-wrap { max-width: 100%; }
  .hours-item       { padding: 20px 32px; }
  .hours-divider    { display: none; }
  .story-highlights { grid-template-columns: 1fr; gap: 16px; }
}


/* ============================================================
   RESPONSIVE — Mobile (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  .nav-links, .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 5%;
    border-top: 1px solid rgba(184,150,62,0.2);
    border-bottom: 1px solid rgba(184,150,62,0.2);
    gap: 20px;
    box-shadow: 0 8px 24px rgba(26,35,64,0.08);
  }

  .nav-links.open a { color: var(--navy); }
  .hamburger        { display: flex; }
  .services-grid    { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .stats-row        { grid-template-columns: 1fr 1fr; }
  .team-grid        { grid-template-columns: 1fr 1fr; }
  .reach-regions    { grid-template-columns: 1fr; }
  .tailored-grid    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .hero-stats       { grid-template-columns: 1fr; }
  .hours-inner      { flex-direction: column; gap: 24px; }
  .hours-item       { padding: 0; }
  .contact-left, .contact-right { padding: 48px 5%; }
  .contact-form-wrap { max-width: 100%; }
  .cta-banner h2    { font-size: 34px; }
  .svc-content h2   { font-size: 30px; }
  .svc-num          { font-size: 56px; }
  footer            { flex-direction: column; text-align: center; }
  .footer-links     { justify-content: center; }
  .overview-stats   { grid-template-columns: 1fr 1fr; }
}

