:root {
  --yellow: #ffd100;
  --yellow-dark: #d6a800;
  --black: #080808;
  --ink: #171717;
  --muted: #666;
  --line: #e8e0bf;
  --paper: #fffdf4;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(8, 8, 8, .94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 209, 0, .35);
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(0, 0, 0, .18); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 260px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 24px;
}
.brand strong { display: block; line-height: 1.1; }
.brand small { display: block; color: #d8d8d8; font-size: 12px; }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: #ececec;
  font-weight: 700;
  font-size: 14px;
}
.main-nav a.active,
.main-nav a:hover { background: var(--yellow); color: var(--black); }
.mega-wrap { position: relative; }
.mega-trigger {
  padding: 10px 13px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: #ececec;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.mega-wrap:hover .mega-trigger,
.mega-wrap.open .mega-trigger { background: var(--yellow); color: var(--black); }
.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: none;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 8px;
  width: min(680px, calc(100vw - 36px));
  padding: 14px;
  background: #101010;
  border: 1px solid rgba(255, 209, 0, .35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mega-wrap:hover .mega-menu,
.mega-wrap.open .mega-menu { display: grid; }
.mega-menu a {
  display: grid;
  gap: 4px;
  padding: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.mega-menu a:hover { background: var(--yellow); color: var(--black); }
.mega-menu span {
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 400;
}
.mega-menu a:hover span { color: #222; }
.header-call {
  padding: 10px 14px;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  color: var(--yellow);
  font-weight: 800;
  white-space: nowrap;
}
.menu-toggle { display: none; background: none; border: 0; margin-left: auto; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 6px; background: var(--yellow); }

.hero-slider { position: relative; min-height: 680px; background: var(--black); overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  background-image: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.46), rgba(0,0,0,.24)), var(--bg);
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  align-items: center;
  color: var(--white);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 88px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow::before { content: ""; width: 34px; height: 4px; background: var(--yellow); }
h1, h2, h3 { line-height: 1.08; margin: 12px 0 16px; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 82px); max-width: 900px; }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: 22px; }
p { color: var(--muted); margin: 0 0 18px; }
.hero-content p { max-width: 760px; color: #f0f0f0; font-size: 20px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  border: 1px solid transparent;
}
.btn.primary { background: var(--yellow); color: var(--black); }
.btn.ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.hero-panel {
  align-self: end;
  background: rgba(255, 209, 0, .94);
  color: var(--black);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel strong, .hero-panel small { display: block; }
.hero-panel span { display: block; font-size: 48px; font-weight: 900; line-height: 1; margin: 10px 0; }
.slider-controls {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 6vw, 88px);
  bottom: 34px;
  display: flex;
  gap: 10px;
}
.slider-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.5);
  color: var(--yellow);
  font-size: 30px;
  cursor: pointer;
}

.section { padding: clamp(56px, 8vw, 104px) clamp(18px, 6vw, 88px); }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}
.split-section.reverse .copy { order: 2; }
.copy p { font-size: 18px; }
.media-tile {
  min-height: 420px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dark-band { background: var(--black); color: var(--white); }
.dark-band p { color: #e8e8e8; }
.section-head { max-width: 840px; margin-bottom: 32px; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 260px;
}
.service-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}
.service-card.large { min-height: 320px; }
.service-card a { color: var(--black); font-weight: 900; border-bottom: 3px solid var(--yellow); }
.seo-band {
  background: var(--yellow);
  color: var(--black);
}
.seo-band p { color: #1f1f1f; max-width: 1040px; font-size: 18px; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black);
}
.info-strip div {
  padding: 26px;
  background: #171717;
  color: var(--white);
}
.info-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.feature-list li {
  list-style: none;
  padding: 16px 18px;
  border-left: 5px solid var(--yellow);
  background: rgba(255, 209, 0, .12);
  font-weight: 800;
}
.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-card {
  min-height: 260px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}
.detail-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--black);
  font-weight: 900;
  border-bottom: 3px solid var(--yellow);
}
.field-gallery {
  background: #111;
  color: var(--white);
}
.field-gallery p { color: #e5e5e5; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050505;
  border: 1px solid rgba(255, 209, 0, .35);
  box-shadow: var(--shadow);
}
.photo-grid img {
  height: clamp(300px, 34vw, 520px);
}
.photo-grid figcaption {
  padding: 14px 16px;
  color: #f2f2f2;
  font-weight: 800;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.page-hero {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 6vw, 88px);
  background: linear-gradient(115deg, #080808 0%, #181818 62%, #ffd100 62%, #ffd100 100%);
  color: var(--white);
}
.page-hero p { max-width: 780px; color: #efefef; font-size: 20px; }
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--black);
  color: var(--white);
}
.process div { border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 26px; }
.process span { color: var(--yellow); font-size: 38px; font-weight: 900; }
.process p { color: #dcdcdc; }

.contact-layout { align-items: start; }
.contact-cards {
  display: grid;
  gap: 14px;
}
.contact-cards a,
.contact-cards div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}
.contact-cards strong { color: var(--yellow); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; font-weight: 800; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d6d0b6;
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
}
.notice { padding: 12px 14px; border-radius: var(--radius); font-weight: 800; }
.notice.success { background: #e7f8df; color: #22620f; }
.notice.error { background: #ffe4de; color: #8a1b0d; }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 36px clamp(18px, 6vw, 88px);
  background: var(--black);
  color: var(--white);
}
.site-footer p, .site-footer span, .site-footer a { display: block; color: #dcdcdc; margin-bottom: 6px; }
.call-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0,0,0,.24);
}

@media (max-width: 980px) {
  .header-call { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    padding: 12px;
    background: var(--black);
    border: 1px solid rgba(255, 209, 0, .35);
    border-radius: var(--radius);
  }
  .main-nav.open { display: flex; }
  .mega-wrap { width: 100%; }
  .mega-trigger { width: 100%; text-align: left; }
  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 8px;
    box-shadow: none;
  }
  .split, .split-section, .site-footer { grid-template-columns: 1fr; }
  .split-section.reverse .copy { order: initial; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: 1fr; }
  .info-strip, .detail-cards, .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  h1 { font-size: 38px; }
  .hero-slider, .hero-content { min-height: 760px; }
  .hero-panel span { font-size: 38px; }
  .grid { grid-template-columns: 1fr; }
  .info-strip, .detail-cards, .feature-list, .photo-grid { grid-template-columns: 1fr; }
  .media-tile { min-height: 300px; }
}

.admin-body { background: #f4f1e3; }
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-login form,
.admin-panel {
  width: min(100%, 980px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.admin-login label,
.admin-panel label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 800;
}
.admin-login input,
.admin-panel input,
.admin-panel textarea {
  width: 100%;
  border: 1px solid #d6d0b6;
  border-radius: var(--radius);
  padding: 12px 13px;
  font: inherit;
}
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 6vw, 72px);
  background: var(--black);
  color: var(--white);
}
.admin-top nav { display: flex; gap: 14px; color: var(--yellow); font-weight: 900; }
.admin-shell {
  display: grid;
  gap: 22px;
  padding: 32px clamp(18px, 6vw, 72px);
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.admin-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.admin-item h3 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
}
.admin-item.content-editor {
  grid-template-columns: repeat(3, 1fr);
}
.admin-item label:nth-child(2),
.admin-item label:nth-child(3) { grid-column: 1 / -1; }
.admin-panel .check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-panel .check input { width: auto; }
.message-row {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.message-row small { display: block; color: var(--muted); }
.admin-thumb {
  grid-column: 1 / -1;
  width: 220px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

@media (max-width: 760px) {
  .admin-grid,
  .admin-item,
  .admin-item.content-editor { grid-template-columns: 1fr; }
}
