@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('fonts/SourceSans3-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Arial Black';
  src: url('fonts/Arial Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

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

:root {
  --orange:     #EC8045;
  --navy:       #0d1b2a;
  --tan:        #f0ebe2;
  --white:      #ffffff;
  --text:       #1e1a16;
  --mid:        #5a5044;
  --muted:      #8a7f74;
  --border:     #ddd8d0;
  --error:      #e08080;
  --error-text: #a04040;
  --error-bg:   #fdf0f0;
}

html, body {
  overscroll-behavior: none;
  background: var(--tan);
  color: var(--text);
  font-family: 'Source Sans 3', Arial, sans-serif;
}

body.index {
  height: 100%;
  overflow: hidden;
}

html {
  height: 100%;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  z-index: 100;
}

/* Header */
.site-header {
  position: fixed;
  top: 3px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  z-index: 90;
}
.header-logo { padding-left: 60px; }
.header-logo img {
  height: 54px;
  width: auto;
  display: block;
}

/* Vignette (index only) */
.vignette {
  position: relative;
  inset: 0;
  background: radial-gradient(ellipse 85% 80% at 50% 50%, transparent 45%, rgba(210,200,188,0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Index main */
body.index main {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3px 32px 80px;
}

.logo-img {
  width: 500px;
  height: auto;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.05s forwards;
}

.rule {
  width: 80px;
  height: 2px;
  background: var(--orange);
  margin: 36px auto 36px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.4s forwards;
}

.subtitle {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0;
  animation: fadeUp 0.5s ease 0.5s forwards;
}

.regions {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.65s forwards;
}
.regions .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 13px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.index footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.9s forwards;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Interior pages */
.page-hero {
  position: relative;
  margin-top: 63px;
  height: 28px;
  overflow: hidden;
}

.stripe-band {
  position: relative;
  margin-top: 63px;
  height: 28px;
  z-index: 2;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='86' height='28'%3E%3Cpath d='M 22,0 L 65,0 L 43,28 L 0,28 Z' fill='%23EC8045' opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 86px 100%;
  pointer-events: none;
}

@media (min-width: 641px) {
  .stripe-band {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='172' height='28'%3E%3Cpath d='M 44,0 L 130,0 L 86,28 L 0,28 Z' fill='%23EC8045' opacity='0.18'/%3E%3C/svg%3E");
    background-size: 172px 100%;
  }
}

.page-main {
  min-height: 100vh;
  padding: 40px 32px 40px;
}

.page-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-heading {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 32px;
}

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1.5rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.contact-col-info,
.contact-col-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
}

.contact-col-info .contact-card { padding-bottom: 0; }

.map-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px;
  aspect-ratio: 1 / 1;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.card-heading {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--orange);
  padding-left: 10px;
}

.info-block {
  margin-bottom: 1.25rem;
}

.info-label {
  display: block;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.info-value {
  display: block;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
}

.info-value a {
  color: var(--navy);
  text-decoration: none;
}
.info-value a:hover { color: var(--orange); }

.dd-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.dd-field label {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dd-field input,
.dd-field select,
.dd-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 2px 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.dd-field input:focus,
.dd-field select:focus,
.dd-field textarea:focus { border-bottom-color: var(--orange); }

.dd-field textarea { resize: none; min-height: 55px; }

.dd-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EC8045' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-color: transparent;
  cursor: pointer;
}

.form-foot {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.submit-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 36px;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--mid); }

/* Form states */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-alert {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--error-text);
  background: var(--error-bg);
  border-left: 3px solid var(--error);
  padding: 10px 14px;
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: normal;
}

.field-error {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--error-text);
  display: block;
}

.form-confirm {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  padding: 20px 0;
}

/* Terms & Conditions */
.tc-intro {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tc-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.tc-section:last-child {
  border-bottom: none;
}

.tc-heading {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.tc-body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  padding-left: 24px;
}

.tc-body + .tc-body {
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 700px) {
  .logo-img { width: 85vw; }
  .site-header { justify-content: center; padding: 0 20px; }
  .header-logo { padding-left: 0; }
  footer { flex-direction: column-reverse; align-items: center; gap: 8px; padding: 12px 20px; }
  body.index main { padding-bottom: 120px; }
  .contact-card { max-width: 100%; }
  
  .page-main { padding: 40px 20px 40px; }
  .contact-wrap { grid-template-columns: 1fr; }

.map-card { aspect-ratio: unset; height: 200px; }
}
