/* ==========================================================================
   Kings Roofing Services — Modern Refresh
   Palette: white, black, orange (from brand logo)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter+Tight:wght@300;400;500;600;700&display=swap');

:root {
  --black-950: #0a0a0a;
  --black-900: #151515;
  --black-800: #1f1f1f;
  --black-700: #2a2a2a;
  --orange-600: #d97a0c;
  --orange-500: #f39323;
  --orange-400: #f7a64a;
  --orange-300: #fac88a;
  --orange-50: #fff5e8;
  --ivory: #fafafa;
  --cream: #f7f5f1;
  --white: #ffffff;
  --grey-700: #3a3a3a;
  --grey-600: #555555;
  --grey-400: #8a8a8a;
  --grey-300: #cccccc;
  --grey-200: #e6e6e6;
  --grey-100: #f0f0f0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 14px -2px rgba(0,0,0,0.10), 0 4px 8px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 48px -12px rgba(0,0,0,0.22);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --content: 1200px;
  --content-narrow: 880px;
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--black-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--black-900); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange-500); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--black-950);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--content-narrow); margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange-500);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

/* ============== ANNOUNCEMENT BAR ============== */
.announce {
  background: var(--black-950);
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.announce .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
  flex-wrap: wrap;
}
.announce a { color: var(--orange-400); font-weight: 600; }
.announce a:hover { color: var(--orange-300); }
.announce-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.announce-left span { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 700px) {
  .hide-mob { display: none !important; }
}

/* ============== HEADER / NAV ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand .brand-mark {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.32rem;
  color: var(--black-950);
  letter-spacing: 0.005em;
}
.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-top: 4px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--black-800);
  color: var(--black-950);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--black-900);
}
.nav a:hover, .nav a.active { color: var(--orange-500); }

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--black-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown > button:hover { color: var(--orange-500); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px;
  min-width: 540px;
  border: 1px solid var(--grey-200);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px 16px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a {
  padding: 7px 10px;
  font-size: 0.86rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--orange-50); color: var(--orange-600); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  border-color: var(--orange-500);
}
.btn-primary:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black-950);
}
.btn-dark {
  background: var(--black-900);
  color: var(--white);
  border-color: var(--black-900);
}
.btn-dark:hover {
  background: var(--black-800);
  color: var(--white);
  transform: translateY(-1px);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--black-950) 0%, var(--black-800) 60%, var(--black-900) 100%);
  color: var(--ivory);
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at top right, rgba(243, 147, 35, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(243, 147, 35, 0.08), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange-400);
  font-weight: 400;
}
.hero-lede {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-meta div { line-height: 1.3; }
.hero-meta strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--orange-400);
  display: block;
}
.hero-meta span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--black-800);
}
.hero-visual svg { width: 100%; height: 100%; display: block; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(243, 147, 35, 0.5);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  background: var(--white);
  padding: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 22px; height: 22px; }
.hero-badge-text { line-height: 1.2; }
.hero-badge-text strong { display: block; font-weight: 600; font-size: 0.92rem; color: var(--orange-400); }
.hero-badge-text span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }

/* ============== SECTIONS ============== */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-dark { background: var(--black-950); color: var(--ivory); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { color: var(--grey-600); font-size: 1.05rem; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.7); }

/* ============== SERVICES GRID ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--orange-500);
  transition: width .3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--orange-500);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--grey-600); font-size: 0.95rem; margin-bottom: 0; }

/* ============== AREAS WE SERVE ============== */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.area-link {
  background: var(--black-900);
  padding: 22px 20px;
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .2s ease;
}
.area-link:hover {
  background: var(--black-800);
  color: var(--orange-400);
  padding-left: 24px;
}
.area-link svg { opacity: 0.4; transition: all .2s ease; }
.area-link:hover svg { opacity: 1; transform: translateX(4px); color: var(--orange-400); }

/* ============== REVIEWS ============== */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-200);
}
.reviews-head .eyebrow { margin-bottom: 12px; }
.reviews-head h2 { margin: 0; }

.google-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: all .2s ease;
  color: var(--black-900);
}
.google-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--black-900);
  border-color: var(--orange-500);
}
.google-pill > svg { flex-shrink: 0; width: 22px; height: 22px; }
.google-pill div { line-height: 1.2; }
.google-pill strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--orange-500);
  display: block;
}
.google-pill span {
  font-size: 0.78rem;
  color: var(--grey-600);
  letter-spacing: 0.04em;
}

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.86rem;
}
.footer-rating strong { color: var(--orange-400); font-family: var(--display); font-size: 1.05rem; }
.footer-rating a { color: rgba(255, 255, 255, 0.85); }
.footer-rating a:hover { color: var(--orange-400); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  transition: all .2s ease;
}
.review-card:hover {
  border-color: var(--orange-300);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: flex;
  gap: 2px;
  color: var(--orange-500);
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.review-text {
  font-size: 0.98rem;
  color: var(--grey-700);
  margin-bottom: 20px;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-500);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
}
.review-meta { line-height: 1.3; }
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--black-950); }
.review-source { font-size: 0.8rem; color: var(--grey-400); }

/* ============== FEATURES ============== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px 32px;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(243, 147, 35, 0.15);
  color: var(--orange-400);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid rgba(243, 147, 35, 0.35);
}
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { color: var(--grey-600); font-size: 0.94rem; margin-bottom: 0; }
.section-dark .feature p { color: rgba(255,255,255,0.72); }

/* ============== CTA STRIP ============== */
.cta-strip {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}
.cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.cta-strip p { font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.92); }
.cta-strip .btn-dark { background: var(--black-950); }

/* ============== FOOTER ============== */
.footer {
  background: var(--black-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
  font-size: 0.92rem;
}
.footer a { color: rgba(255, 255, 255, 0.7); }
.footer a:hover { color: var(--orange-400); }
.footer h4 {
  color: var(--white);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 0.88rem; }
.footer-col.footer-areas ul {
  column-count: 2;
  column-gap: 18px;
  column-fill: balance;
}
.footer-col.footer-areas li { break-inside: avoid; }
.footer-brand img { height: 80px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============== PAGE HEADER (inner pages) ============== */
.page-header {
  background: linear-gradient(135deg, var(--black-950) 0%, var(--black-800) 100%);
  color: var(--ivory);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(243, 147, 35, 0.15), transparent 55%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; max-width: 640px; margin-bottom: 0; }
.breadcrumbs {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: var(--orange-400); }

/* ============== CONTENT PROSE ============== */
.prose { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.prose ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--black-950); }
.prose .lead { font-size: 1.2rem; color: var(--grey-700); margin-bottom: 2rem; font-family: var(--display); font-weight: 400; line-height: 1.5; }

.list-check { list-style: none; padding: 0; }
.list-check li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
}
.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--orange-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--black-950);
  color: var(--ivory);
  padding: 40px;
  border-radius: var(--radius-md);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-info-card .tag { color: var(--orange-400); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; display:block; font-weight:600; }
.contact-item {
  display: flex;
  gap: 14px;
  margin: 22px 0;
  align-items: flex-start;
}
.contact-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(243, 147, 35, 0.15);
  color: var(--orange-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 2px; }
.contact-item-value { font-size: 1.05rem; color: var(--white); }
.contact-item a { color: var(--orange-400); }
.contact-item a:hover { color: var(--orange-300); }

.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-md); border: 1px solid var(--grey-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black-900);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 0.95rem;
  background: var(--cream);
  transition: all .15s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(243, 147, 35, 0.15);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-note {
  font-size: 0.82rem;
  color: var(--grey-600);
  margin-top: 14px;
}

/* Honeypot field — visually hidden, but bots will still see/fill it */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Captcha block — subtle visual treatment */
.captcha-group {
  padding: 16px 18px;
  background: var(--orange-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--orange-500);
  margin-bottom: 22px;
}
.captcha-group label { color: var(--black-950); }
.captcha-group .form-note { margin-top: 8px; margin-bottom: 0; }

/* ============== GALLERY ============== */
.gallery-section {
  margin-bottom: 60px;
}
.gallery-section:last-of-type {
  margin-bottom: 0;
}
.gallery-section-head {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-200);
}
.gallery-section-head h2 {
  margin: 0 0 6px;
}
.gallery-section-head p {
  color: var(--grey-600);
  margin: 0;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--black-800);
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-item:hover { transform: scale(1.015); }
.gallery-item svg,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============== AREA PAGE ============== */
.area-cta {
  background: var(--orange-50);
  padding: 30px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange-500);
  margin: 30px 0;
}
.area-cta strong { display: block; font-family: var(--display); font-size: 1.4rem; color: var(--black-950); margin-bottom: 4px; }

/* ============== FAQ ============== */
.faq-item {
  border-bottom: 1px solid var(--grey-200);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--body);
  font-size: 1.5rem;
  color: var(--orange-500);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--grey-600); margin-bottom: 0; }

/* ============== ANIMATIONS ============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up.d1 { animation-delay: 0.1s; }
.fade-up.d2 { animation-delay: 0.2s; }
.fade-up.d3 { animation-delay: 0.3s; }
.fade-up.d4 { animation-delay: 0.4s; }

/* ============== RESPONSIVE ============== */
@media (max-width: 960px) {
  .hero { padding: 70px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 5/4; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 70px 0; }

  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 0;
    box-shadow: var(--shadow-md);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a, .nav-dropdown > button {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-100);
    width: 100%;
    text-align: left;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    display: none;
    position: static;
    min-width: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 16px;
    background: transparent;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: grid; }
  .nav-dropdown-menu a { border-bottom: none; padding: 8px 0; }

  .site-header .container { position: relative; }

  .brand .brand-mark { height: 40px; }
  .brand-name { font-size: 1.15rem; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .hero-meta { gap: 24px; }
  .hero-meta strong { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .announce-left { font-size: 0.78rem; gap: 14px; }
  .announce .container > a.btn { display: none; }
  .contact-info-card, .contact-form { padding: 26px; }
  .section { padding: 60px 0; }
  .brand .brand-mark { height: 36px; }
  .brand-name { font-size: 1.02rem; }
  .brand-tag { font-size: 0.62rem; letter-spacing: 0.14em; }
  .footer-brand img { height: 64px; }
}

@media (max-width: 420px) {
  .brand-tag { display: none; }
}
