:root {
  --bg-main: #0c0d10;
  --bg-surface: #14161b;
  --bg-card: #191c23;
  --bg-accent: #20242e;
  --text-primary: #edeae5;
  --text-secondary: #9ea0a8;
  --text-muted: #6b6e77;
  --gold-primary: #c5a059;
  --gold-light: #dfba73;
  --gold-glow: rgba(197, 160, 89, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(197, 160, 89, 0.28);
  --font-serif: 'Shippori Mincho', 'Zen Old Mincho', serif;
  --font-sans: 'Zen Kaku Gothic New', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Cinzel', 'Shippori Mincho', serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1220px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  line-height: 1.85;
  color: var(--text-primary);
  background: var(--bg-main);
  overflow-x: hidden;
  font-feature-settings: "palt";
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold-primary);
  color: #000;
  padding: 12px 24px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}
.skip-link:focus {
  top: 20px;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  color: #f7f6f2;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.25;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: 0.06em;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0.03em;
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.9;
}

strong {
  color: #ffffff;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: #fff;
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head {
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}

.section-head.text-left {
  text-align: left;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-primary);
  padding-bottom: 2px;
}

.section-subhead {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 1.02rem;
  color: var(--text-secondary);
}

.section-head.text-left .section-subhead {
  margin: 16px 0 0;
}

/* Reticle signature graphic element */
.reticle-box {
  position: relative;
}
.reticle-box::before, .reticle-box::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold-primary);
  pointer-events: none;
  opacity: 0.7;
}
.reticle-box::before {
  top: 12px;
  left: 12px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.reticle-box::after {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 13, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 18px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--gold-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  min-height: 48px;
  text-align: center;
}

.btn-primary {
  background: var(--gold-primary);
  color: #0c0d10;
  border-color: var(--gold-primary);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(197, 160, 89, 0.08);
  color: #fff;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 110px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow-badge {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.hero-eyebrow-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.95;
  color: #d1cfc9;
  margin: 24px 0 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-assurance {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-assurance span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-visual-frame {
  position: relative;
  border: 1px solid var(--border-gold);
  padding: 12px;
  background: var(--bg-surface);
}

.hero-visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05);
}

.hero-aspect-indicator {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(12, 13, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
}

/* Feature & Challenge Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 36px 30px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.card-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(197, 160, 89, 0.35);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}
.card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-primary);
  stroke-width: 1.5;
  fill: none;
}

.card-title {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #fff;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Workflow Stage Strip */
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 40px;
}

.timeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 28px 24px;
  border-top: 3px solid var(--gold-primary);
  position: relative;
}

.step-code {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.step-title {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: #fff;
}

/* Tables */
.spec-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  margin-top: 32px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.spec-table th, .spec-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.spec-table th {
  background: var(--bg-surface);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.badge-included {
  color: #79d29b;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-excluded {
  color: #9ea0a8;
  font-weight: 400;
}

/* FAQ Accordion */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  color: #f5f4ef;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
  stroke-width: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.85;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

/* Profile / Entity Disclosure Block */
.profile-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 40px;
}

/* Booking & Enquiry Form */
.form-section-container {
  max-width: 840px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 48px 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0eee8;
  letter-spacing: 0.03em;
}

.form-label .req {
  color: var(--gold-light);
  margin-left: 4px;
  font-size: 0.78rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: #0e1014;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-consent-box {
  background: #111317;
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 24px 0;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.86rem;
  color: #e5e3dc;
  user-select: none;
}

.form-checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
}

.form-review-modal {
  display: none;
  background: #121419;
  border: 1px solid var(--border-gold);
  padding: 32px;
  margin-bottom: 24px;
}

.form-review-modal.active {
  display: block;
}

.review-item {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  font-size: 0.9rem;
}
.review-item .r-label {
  width: 140px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.review-item .r-val {
  color: #f7f6f2;
  word-break: break-word;
}

.form-feedback {
  display: none;
  padding: 36px 32px;
  background: #13171f;
  border: 1px solid var(--gold-primary);
  text-align: center;
  margin-top: 20px;
}
.form-feedback.active {
  display: block;
}
.form-feedback h3 {
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* Footer */
.site-footer {
  background: #08090b;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.86rem;
}
.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 580px;
  background: #151820;
  border: 1px solid var(--border-gold);
  padding: 24px 28px;
  z-index: 10000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7);
  display: none;
}
.cookie-banner.active {
  display: block;
}
.cookie-text {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.75;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Mobile & Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .timeline-track {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-section-container {
    padding: 32px 20px;
  }
  .hero-visual-img {
    height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}