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

:root {
  --sand:     #FDF6EC;
  --sand-mid: #F5E6CC;
  --sand-dark:#E8D0A8;
  --ocean:    #1A6B8A;
  --ocean-mid:#2490B5;
  --ocean-light:#B8DFF0;
  --wave:     #5BBFD6;
  --sunset:   #E8622A;
  --sunset-light:#F4A46A;
  --cream:    #FFFDF8;
  --charcoal: #1C2B35;
  --slate:    #4A6572;
  --white:    #FFFFFF;
  --grass:    #4A9B6F;
  /* legacy aliases — keep old variable names pointing to readable colours */
  --cliff:    #4A6572;
  --seafoam:  #1A6B8A;
  --service-price-color: #1A6B8A;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
}
nav.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 2px 20px rgba(26,107,138,0.1);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--ocean);
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav-logo span {
  color: var(--sunset);
  font-style: italic;
}
.nav-links { display:flex; gap:2.5rem; list-style:none; align-items:center; }
.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ocean); }
nav.scrolled .nav-links a { color: var(--charcoal); }
/* Nav is always light background — no dark-hero override needed */
.nav-cta {
  background: var(--sunset) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--sunset-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,98,42,0.35) !important;
}
.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(--ocean); transition:all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(253,246,236,0.97) 45%, rgba(253,246,236,0.6) 70%, rgba(253,246,236,0.1) 100%),
    url('../assets/CornishWaves.jpg') center/cover no-repeat;
}
.hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 3rem 5rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ocean-light);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: none;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  max-width: 600px;
}
.hero h1 em {
  font-style: italic;
  color: var(--ocean);
}
.hero h1 .accent {
  color: var(--sunset);
  font-style: italic;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3.5rem; }

.btn-primary {
  display: inline-block;
  background: var(--sunset);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(232,98,42,0.3);
}
.btn-primary:hover {
  background: #d4541f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,98,42,0.4);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ocean);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--ocean);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-ghost:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 500;
}
.trust-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--grass);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* ── SECTIONS ── */
.section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.section-title em { font-style:italic; color:var(--ocean); }
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 520px;
}

/* ── SERVICES BAND ── */
.services-band {
  background: var(--ocean);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.services-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91,191,214,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.services-band .section-title { color: var(--white); }
.services-band .section-label { color: var(--wave); }
.services-band .section-sub { color: var(--ocean-light); max-width:100%; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(310px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.service-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.service-icon-wrap {
  width: 52px; height: 52px;
  background: var(--sunset);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 12px rgba(232,98,42,0.4);
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--ocean-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.service-price-tag {
  display: inline-block;
  background: var(--sunset);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}
.service-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.service-features li {
  font-size: 0.84rem;
  color: var(--ocean-light);
  padding: 0.28rem 0 0.28rem 1.2rem;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--wave);
  font-size: 0.75rem;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 280px;
  overflow: hidden;
}
.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,107,138,0.4), transparent);
}

/* ── WHY US ── */
.why-section { background: var(--sand); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 0;
}
.why-photo {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 500px;
}
.why-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.why-photo-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: white;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 0.8rem;
}
.badge-icon { font-size: 1.8rem; }
.badge-text-main { font-family:'Fraunces',serif; font-size:1.3rem; font-weight:700; color:var(--charcoal); line-height:1; }
.badge-text-sub { font-size:0.75rem; color:var(--slate); margin-top:0.1rem; }

.why-points { display:flex; flex-direction:column; gap:1.5rem; margin-top:2rem; }
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--sand-dark);
  transition: all 0.25s;
}
.why-point:hover {
  box-shadow: 0 8px 24px rgba(26,107,138,0.1);
  transform: translateX(4px);
}
.why-point-icon {
  width: 44px; height: 44px;
  background: var(--ocean-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-point h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.why-point p { font-size: 0.84rem; color: var(--slate); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--ocean-light), var(--wave), var(--sunset-light));
  border-radius: 2px;
}
.process-step { text-align: center; position: relative; }
.step-bubble {
  width: 60px; height: 60px;
  background: var(--white);
  border: 3px solid var(--ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ocean);
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(26,107,138,0.15);
  transition: all 0.3s;
}
.process-step:hover .step-bubble {
  background: var(--ocean);
  color: white;
  transform: scale(1.1);
}
.step-title { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
.step-desc { font-size: 0.84rem; color: var(--slate); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--sand); padding: 5rem 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--sand-dark);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,107,138,0.1);
}
.testimonial-stars {
  color: #F5A623;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display:flex; align-items:center; gap:0.8rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-light), var(--wave));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean);
  font-family: 'Fraunces', serif;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.author-role { font-size: 0.78rem; color: var(--slate); }

/* ── FAQ ── */
.faq-list { margin-top: 3rem; max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--sand-dark); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.3rem 0; color: var(--charcoal); font-size: 0.975rem;
  font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--ocean); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--ocean-light);
  color: var(--ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  transition: all 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--ocean);
  color: white;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { font-size: 0.9rem; color: var(--slate); line-height: 1.75; padding-bottom: 1.3rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 50%, #3AB0D0 100%);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  margin: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🌊';
  position: absolute;
  font-size: 12rem;
  opacity: 0.06;
  top: -2rem; right: 2rem;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.cta-banner p { color: var(--ocean-light); font-size: 1.05rem; margin-bottom: 2rem; }

/* ── PRICING ── */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--sand-dark);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--ocean-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,107,138,0.1);
}
.pricing-card.featured {
  border-color: var(--ocean);
  background: linear-gradient(160deg, #f0f9ff 0%, var(--white) 100%);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sunset); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 50px;
  box-shadow: 0 4px 12px rgba(232,98,42,0.3);
}
.pricing-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 0.4rem;
}
.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--ocean); line-height: 1; margin: 0.8rem 0 0.3rem;
}
.pricing-price span { font-size: 1rem; color: var(--slate); font-family:'Plus Jakarta Sans',sans-serif; font-weight:400; }
.pricing-desc { font-size: 0.85rem; color: var(--slate); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-list { list-style: none; margin-bottom: 2rem; }
.pricing-list li {
  font-size: 0.875rem; color: var(--charcoal);
  padding: 0.45rem 0; border-bottom: 1px solid var(--sand);
  padding-left: 1.4rem; position: relative;
}
.pricing-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--grass); font-weight: 800;
}

/* ── CONTACT ── */
.contact-section { background: var(--sand); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem;
}
.contact-info h3 {
  font-family: 'Fraunces', serif; font-size: 1.5rem;
  color: var(--charcoal); margin-bottom: 1rem;
}
.contact-info p { font-size: 0.9rem; color: var(--slate); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; background: var(--ocean-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text { font-size: 0.9rem; color: var(--slate); }
.contact-detail-text strong { display:block; color:var(--charcoal); font-size:0.8rem; margin-bottom:0.1rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--white);
  border: 2px solid var(--sand-dark);
  border-radius: 10px; padding: 0.8rem 1rem;
  color: var(--charcoal); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ocean); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: 9rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content:'';
  position:absolute; top:-100px; right:-100px;
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(91,191,214,0.2) 0%,transparent 70%);
  border-radius:50%;
}
.page-hero::after {
  content:'';
  position:absolute;bottom:-100px;left:-100px;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(232,98,42,0.12) 0%,transparent 70%);
  border-radius:50%;
}
.page-hero .section-label { color: var(--wave); }
.page-hero .section-title { color: var(--white); max-width:600px; margin:0 auto 1rem; }
.page-hero .section-sub { color:var(--ocean-light); text-align:center; margin:0 auto; }

/* ── ABOUT ── */
.about-section { background: var(--cream); }
.about-grid { display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;margin-top:3rem; }
.about-photo-wrap { position:relative; }
.about-photo {
  border-radius: 24px; overflow: hidden;
  height: 520px; position: relative;
}
.about-photo img { width:100%;height:100%;object-fit:cover; }
.about-photo-card {
  position:absolute; bottom:1.5rem;right:-1.5rem;
  background:var(--white); border-radius:16px; padding:1.2rem 1.5rem;
  box-shadow:0 8px 32px rgba(0,0,0,0.12);
  border:1px solid var(--sand-dark);
  max-width:200px;
}
.skills-list { display:flex;flex-wrap:wrap;gap:0.5rem;margin-top:1.5rem; }
.skill-tag {
  background: var(--ocean-light);
  color: var(--ocean);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 50px;
}
.value-card {
  background: var(--white); border: 1px solid var(--sand-dark);
  border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem;
  transition: all 0.25s;
}
.value-card:hover { box-shadow:0 8px 24px rgba(26,107,138,0.1); transform:translateX(4px); }
.value-card h4 { font-size:0.95rem;font-weight:600;color:var(--charcoal);margin-bottom:0.3rem; }
.value-card p { font-size:0.84rem;color:var(--slate);line-height:1.6; }

/* ── COMPARE TABLE ── */
.compare-table { width:100%;border-collapse:collapse;margin-top:2rem;background:white;border-radius:16px;overflow:hidden;box-shadow:0 4px 24px rgba(26,107,138,0.08); }
.compare-table th {
  background: var(--ocean); color:white;
  font-size:0.85rem;font-weight:600;padding:1rem;text-align:left;
}
.compare-table td { padding:0.75rem 1rem;font-size:0.84rem;color:var(--slate);border-bottom:1px solid var(--sand); }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tr:hover td { background:var(--sand); }
.compare-table td:first-child { color:var(--charcoal);font-weight:500; }
.tick { color:var(--grass);font-weight:700; }
.cross { color:#ccc; }
.partial { color:#F5A623;font-weight:500; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 4rem 3rem 2rem;
  color: var(--sand-mid);
}
.footer-inner {
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem;margin-bottom:3rem;
}
.footer-brand .nav-logo { color:var(--sand) !important; }
.footer-brand .nav-logo span { color:var(--sunset-light) !important; }
.footer-brand p { font-size:0.875rem;color:#7a8f9a;line-height:1.7;margin-top:1rem;max-width:240px; }
.footer-col h4 {
  font-size:0.72rem;font-weight:700;letter-spacing:0.15em;
  text-transform:uppercase;color:var(--wave);margin-bottom:1rem;
}
.footer-col a {
  display:block;color:#7a8f9a;text-decoration:none;
  font-size:0.875rem;margin-bottom:0.5rem;transition:color 0.2s;
}
.footer-col a:hover { color:var(--sand); }
.footer-bottom {
  max-width:1200px;margin:0 auto;padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,0.07);
  display:flex;justify-content:space-between;align-items:center;
  font-size:0.8rem;color:#7a8f9a;
}
.footer-bottom a { color:#7a8f9a;text-decoration:none; }
.footer-bottom a:hover { color:var(--sand); }

/* ── TIER BADGES ── */
.tier-badge {
  display:inline-block;font-size:0.7rem;font-weight:700;
  letter-spacing:0.12em;text-transform:uppercase;
  padding:0.3rem 0.9rem;border-radius:50px;margin-bottom:1rem;
}
.tier-1 { background:var(--ocean-light);color:var(--ocean); }
.tier-2 { background:#FEE8D8;color:var(--sunset); }
.tier-3 { background:#EAE8FE;color:#5A4FCF; }

/* ── POLICY PAGE ── */
.policy-body { max-width:740px;margin:0 auto;padding:8rem 3rem 5rem; }
.policy-body h1 { font-family:'Fraunces',serif;font-size:clamp(2rem,4vw,2.8rem);color:var(--charcoal);margin-bottom:0.5rem; }
.policy-date { font-size:0.82rem;color:var(--slate);margin-bottom:2.5rem;display:block; }
.policy-body h2 { font-family:'Fraunces',serif;font-size:1.2rem;color:var(--charcoal);margin-top:2.5rem;margin-bottom:0.6rem;padding-bottom:0.5rem;border-bottom:2px solid var(--sand-dark); }
.policy-body p { font-size:0.925rem;color:var(--slate);line-height:1.85;margin-bottom:1rem; }
.policy-body ul { margin:0.5rem 0 1rem;padding-left:0;list-style:none; }
.policy-body ul li { font-size:0.925rem;color:var(--slate);line-height:1.7;padding:0.25rem 0 0.25rem 1.2rem;position:relative; }
.policy-body ul li::before { content:'→';position:absolute;left:0;color:var(--ocean);font-size:0.75rem;top:0.35rem; }
.policy-body a { color:var(--ocean);text-decoration:none; }
.policy-body a:hover { text-decoration:underline; }
.policy-body strong { color:var(--charcoal);font-weight:600; }
.policy-highlight { background:var(--ocean-light);border-left:4px solid var(--ocean);border-radius:0 12px 12px 0;padding:1rem 1.25rem;margin:1.5rem 0; }
.policy-highlight p { margin:0;font-size:0.875rem;color:var(--ocean); }

/* ── ANIMATIONS ── */
.fade-up { opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease; }
.fade-up.visible { opacity:1;transform:translateY(0); }

/* ── UTILITY ── */
.mt-2 { margin-top:2rem; }
.text-center { text-align:center; }
.divider { height:1px;background:var(--sand-dark);margin:0; }

/* ── MOBILE ── */
@media (max-width:768px) {

  nav { padding:1rem 1.25rem; }
  nav.scrolled { padding:0.7rem 1.25rem; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-links.open {
    display:flex; flex-direction:column; position:fixed;
    top:0; left:0; right:0; bottom:0; background:var(--cream);
    align-items:center; justify-content:center; gap:2rem; z-index:99;
  }
  .nav-links.open a { font-size:1.3rem; color:var(--charcoal); }

  .hero { min-height:auto; }
  .hero-photo {
    background: linear-gradient(to bottom, rgba(253,246,236,0.97) 0%, rgba(253,246,236,0.94) 100%),
    url('../assets/CornishWaves.jpg') center/cover no-repeat !important;
  }
  .hero-content { padding:6rem 1.25rem 3rem; }
  .hero h1 { font-size:2rem; line-height:1.1; max-width:100%; }
  .hero-sub { font-size:0.95rem; max-width:100%; margin-bottom:1.5rem; }
  .hero-actions { flex-direction:column; gap:0.75rem; margin-bottom:2rem; }
  .hero-actions a { width:100%; text-align:center; box-sizing:border-box; display:block; }
  .hero-trust { flex-direction:column; gap:0.6rem; }

  .section { padding:2.5rem 1.25rem; }
  .section-title { font-size:1.75rem !important; line-height:1.2 !important; }
  .section-sub { font-size:0.9rem !important; max-width:100% !important; }

  .services-band { padding:2.5rem 1.25rem !important; }
  .services-band > div { padding:0 !important; max-width:100%; }
  .services-band .section-title { color:var(--white) !important; font-size:1.6rem !important; }
  .services-band .section-sub { color:var(--ocean-light) !important; }
  .services-band .section-label { color:var(--wave) !important; }
  .services-grid { grid-template-columns:1fr !important; gap:1rem !important; margin-top:1.5rem !important; }
  .service-card { padding:1.5rem !important; }

  .why-section > div { padding:2.5rem 1.25rem !important; }
  .why-grid { grid-template-columns:1fr !important; gap:1.5rem !important; padding:0 !important; }
  .why-photo { height:200px !important; border-radius:16px !important; }
  .why-points { gap:0.75rem !important; margin-top:1rem !important; }
  .why-point { padding:0.875rem !important; }

  .process-section .section { padding:2.5rem 1.25rem !important; }
  .process-steps { grid-template-columns:1fr 1fr !important; gap:1rem !important; }
  .process-steps::before { display:none; }
  .step-bubble { width:46px !important; height:46px !important; font-size:1.1rem !important; }
  .step-title { font-size:0.875rem !important; }
  .step-desc { font-size:0.78rem !important; }

  .cta-banner { margin:1.5rem 1.25rem !important; padding:2.25rem 1.25rem !important; border-radius:20px !important; }
  .cta-banner h2 { font-size:1.4rem !important; }
  .cta-banner p { font-size:0.9rem !important; }
  .cta-banner .btn-primary { display:block; width:100%; text-align:center; }

  .page-hero { padding:6rem 1.25rem 3rem !important; }
  .page-hero .section-title { font-size:1.8rem !important; }
  .page-hero .section-sub { font-size:0.88rem !important; }

  .contact-section .section { padding:2rem 1.25rem !important; }
  .contact-grid { grid-template-columns:1fr !important; gap:1.5rem !important; }

  .about-section .section { padding:2.5rem 1.25rem !important; }
  .about-grid { grid-template-columns:1fr !important; gap:1.5rem !important; }
  .about-photo { height:240px !important; }
  .about-photo-card { display:none; }

  .pricing-grid { grid-template-columns:1fr !important; gap:1.25rem !important; }
  .pricing-card { padding:1.5rem !important; }
  .pricing-price { font-size:2rem !important; }

  footer { padding:3rem 1.25rem 1.5rem !important; }
  .footer-inner { grid-template-columns:1fr 1fr !important; gap:1.5rem !important; }
  .footer-brand { grid-column:1 / -1; }
  .footer-col h4 { font-size:0.68rem !important; }
  .footer-col a { font-size:0.82rem !important; }
  .footer-bottom { flex-direction:column; gap:0.5rem; text-align:center; }

  .photo-strip { grid-template-columns:1fr 1fr !important; height:180px !important; }
  .photo-strip-item:nth-child(3),
  .photo-strip-item:nth-child(4) { display:none; }

  .faq-list { margin-top:1.5rem; }
  .faq-question { font-size:0.88rem; padding:1rem 0; }
  .policy-wrap { padding:6rem 1.25rem 3rem !important; }

  /* Services page two-col content grids */
  .services-two-col { grid-template-columns:1fr !important; gap:2rem !important; }

  /* Maintenance add-on row */
  .maintenance-row { grid-template-columns:1fr !important; gap:1rem !important; }

  /* Grid classes added to HTML */
  .mobile-stack { grid-template-columns:1fr !important; gap:1rem !important; }
  .mobile-2col { grid-template-columns:1fr 1fr !important; gap:0.75rem !important; }
  .mobile-form-stack { grid-template-columns:1fr !important; }
  .mobile-single { grid-template-columns:1fr !important; gap:1rem !important; }
}

@media (max-width:420px) {
  .hero h1 { font-size:1.7rem; }
  .section-title { font-size:1.5rem !important; }
  .process-steps { grid-template-columns:1fr !important; }
  .footer-inner { grid-template-columns:1fr !important; }
  .mobile-2col { grid-template-columns:1fr !important; gap:0.75rem !important; }
  .pricing-price { font-size:1.75rem !important; }
}

/* ── MATERIAL ICONS ── */
.material-icons {
  font-size: 1.4rem;
  vertical-align: middle;
  line-height: 1;
}
.service-icon-wrap .material-icons {
  font-size: 1.6rem;
  color: var(--white);
}
.why-point-icon .material-icons {
  font-size: 1.3rem;
  color: var(--ocean);
}
.contact-detail-icon .material-icons {
  font-size: 1.2rem;
  color: var(--ocean);
}
.hero-eyebrow .material-icons {
  font-size: 1rem;
  color: var(--ocean);
}
.trust-item .material-icons {
  display: none; /* trust items use ::before checkmark */
}
.step-bubble .material-icons { font-size: 1.2rem; }
