/* Hudson Hot Shots Moving — site-wide stylesheet */
:root {
  --teal-deep: #0a4f4a;
  --teal: #1a6d68;
  --teal-mid: #2a8a82;
  --seafoam: #9ec9c2;
  --sand-light: #f3ead7;
  --sand: #e6d5a8;
  --sand-warm: #d4b87a;
  --shell: #faf6ed;
  --ink: #18302e;
  --ink-soft: #3a5450;
  --coral: #d96846;
  --coral-soft: #e89377;
  --line: rgba(24, 48, 46, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--shell);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.6;
}

/* TOPBAR */
.topbar { background: var(--teal-deep); color: var(--sand-light); font-size: 13px; padding: 8px 0; position: relative; z-index: 10; }
.topbar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar a { color: var(--sand-warm); font-weight: 600; }
.topbar-badges { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 500; }

/* NAV */
nav.main-nav { position: sticky; top: 0; z-index: 50; background: rgba(250,246,237,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: var(--teal-deep); letter-spacing: -0.02em; }
.logo span { color: var(--coral); font-style: italic; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color 0.2s; }
.nav-links a:hover { color: var(--coral); }
.nav-cta { background: var(--coral); color: var(--shell) !important; padding: 11px 22px; border-radius: 999px; font-weight: 600 !important; transition: all 0.25s; font-size: 13px !important; }
.nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; font-size: 24px; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-btn { display: block; color: var(--teal-deep); }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--shell); padding: 24px; border-bottom: 1px solid var(--line); gap: 18px; }
}

/* HERO (compact for inner pages) */
.page-hero { padding: 70px 24px 90px; background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(212,184,122,0.4), transparent 60%), radial-gradient(ellipse 70% 50% at 10% 90%, rgba(158,201,194,0.5), transparent 60%), linear-gradient(180deg, var(--shell) 0%, var(--sand-light) 100%); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 50px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23faf6ed' d='M0,30 Q360,60 720,30 T1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat; background-size: cover; }
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--teal); margin-bottom: 20px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--teal); }
h1.page-title { font-size: clamp(40px, 5.5vw, 72px); font-weight: 400; color: var(--teal-deep); margin-bottom: 20px; max-width: 900px; }
h1.page-title em { font-style: italic; font-weight: 300; color: var(--coral); }
.page-lead { font-size: 18px; color: var(--ink-soft); max-width: 680px; margin-bottom: 32px; }

.btn-primary { background: var(--teal-deep); color: var(--shell); padding: 16px 32px; border-radius: 999px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s; border: none; cursor: pointer; font-family: 'Manrope', sans-serif; }
.btn-primary:hover { background: var(--coral); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(217,104,70,0.25); }
.btn-secondary { background: transparent; color: var(--teal-deep); padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px; border: 1.5px solid var(--teal-deep); display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s; cursor: pointer; font-family: 'Manrope', sans-serif; }
.btn-secondary:hover { background: var(--teal-deep); color: var(--shell); }

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

/* SECTIONS */
section { position: relative; z-index: 2; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
@media (max-width: 860px) { .section-pad { padding: 60px 0; } }
.section-eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--coral); margin-bottom: 16px; }
h2.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--teal-deep); max-width: 720px; margin-bottom: 18px; }
h2.section-title em { font-style: italic; color: var(--coral); font-weight: 300; }
.section-lead { font-size: 17px; color: var(--ink-soft); max-width: 640px; }

/* Breadcrumbs */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* PROSE blocks for content-heavy pages */
.prose { max-width: 760px; }
.prose p { font-size: 17px; color: var(--ink); margin-bottom: 22px; }
.prose h2 { font-size: clamp(28px, 3.2vw, 40px); color: var(--teal-deep); margin: 50px 0 18px; font-weight: 500; }
.prose h3 { font-size: 22px; color: var(--teal-deep); margin: 32px 0 12px; font-weight: 600; }
.prose ul, .prose ol { margin: 0 0 24px 22px; }
.prose li { font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.prose blockquote { border-left: 3px solid var(--coral); padding-left: 22px; margin: 30px 0; font-style: italic; font-family: 'Fraunces', serif; font-size: 19px; color: var(--teal-deep); }
.prose strong { color: var(--teal-deep); }
.prose a { color: var(--coral); border-bottom: 1px solid currentColor; }

/* Two-column with sidebar */
.layout-two-col { display: grid; grid-template-columns: 1fr 320px; gap: 60px; }
@media (max-width: 960px) { .layout-two-col { grid-template-columns: 1fr; } }

.sidebar-card { background: var(--shell); border: 1px solid var(--line); border-radius: 18px; padding: 28px; position: sticky; top: 100px; }
.sidebar-card h4 { font-size: 20px; color: var(--teal-deep); margin-bottom: 14px; }
.sidebar-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.sidebar-card .phone-big { font-family: 'Fraunces', serif; font-size: 26px; color: var(--coral); display: block; margin: 14px 0 6px; }
.sidebar-card .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }

/* Local SEO inline cards */
.local-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.local-card { background: var(--sand-light); padding: 24px; border-radius: 14px; border-left: 4px solid var(--coral); }
.local-card h4 { font-size: 17px; color: var(--teal-deep); margin-bottom: 8px; font-family: 'Manrope'; font-weight: 700; }
.local-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 720px) { .local-grid { grid-template-columns: 1fr; } }

/* CTA strip */
.cta-strip { background: var(--coral); color: var(--shell); padding: 70px 0; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Cpath fill='none' stroke='%23faf6ed' stroke-width='0.5' stroke-opacity='0.3' d='M0,50 Q25,30 50,50 T100,50'/%3E%3C/svg%3E"); background-size: 100px 100px; }
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; position: relative; }
.cta-strip h2 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 400; color: var(--shell); max-width: 700px; }
.cta-strip h2 em { font-style: italic; color: var(--sand-light); }
.cta-strip .btn-primary { background: var(--shell); color: var(--coral); }
.cta-strip .btn-primary:hover { background: var(--teal-deep); color: var(--shell); }

/* FOOTER */
footer { background: var(--ink); color: var(--seafoam); padding: 60px 0 28px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer h4 { font-size: 13px; color: var(--sand-warm); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; font-family: 'Manrope'; }
footer .logo-foot { font-family: 'Fraunces', serif; color: var(--shell); font-size: 24px; margin-bottom: 14px; display: block; }
footer .logo-foot span { color: var(--coral-soft); font-style: italic; }
footer p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { padding: 5px 0; }
footer ul li a { font-size: 14px; color: var(--seafoam); transition: color 0.2s; }
footer ul li a:hover { color: var(--sand-warm); }
.footer-bottom { border-top: 1px solid rgba(158,201,194,0.15); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* QUICK FORM (used on city/contact pages) */
.quick-form { background: var(--shell); padding: 32px; border-radius: 18px; border: 1px solid var(--line); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.05em; text-transform: uppercase; }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px; font-family: 'Manrope', sans-serif; font-size: 15px; color: var(--ink); background: var(--sand-light); transition: all 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-deep); background: var(--shell); box-shadow: 0 0 0 4px rgba(10,79,74,0.08); }
.field textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 16px; background: var(--coral); color: var(--shell); border: none; border-radius: 12px; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.25s; }
.form-submit:hover { background: var(--teal-deep); transform: translateY(-2px); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

@keyframes float-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: float-in 0.8s ease-out backwards; }
.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.2s; }
