:root {
  --primary: #1E5AA8;
  --accent: #EAF4FD;
  --success: #2E7D32;
  --success-bg: #E8F5E9;
  --warning: #F9A825;
  --danger: #C62828;
  --danger-bg: #FFF8F8;
  --button: #1E5AA8;
  --card: #FFFFFF;
  --alternate-row: #DFEBF5;
  --text: #1d1d1f;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--card);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--card);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

/* HEADER — approved 1920x300 banner, full width, no max-width cap */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #d7e2eb;
  z-index: 10;
}

.header-inner {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.brand-banner {
  display: block;
  width: 100%;
  height: clamp(110px, 10vw, 180px);
  object-fit: fill;
  max-width: none;
  margin: 0;
}

/* MAIN — scenic image ABOVE content, never side-by-side */
.landing-main {
  width: 100%;
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-image-wrap {
  width: 100%;
  height: clamp(245px, 34vh, 390px);
  overflow: hidden;
  background: var(--accent);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-content {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(20px, 2.4vw, 34px) 24px clamp(24px, 2.8vw, 38px);
  text-align: center;
}

/* LOCKED THEME COLORS */
h1,
h2 {
  margin: 0;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.08;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin-top: 20px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
}

.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px auto 14px;
  width: min(100%, 430px);
  color: var(--warning);
}

.brand-divider span {
  height: 1px;
  background: var(--warning);
  flex: 1;
}

.brand-divider b {
  font-size: 12px;
  color: var(--warning);
  transform: rotate(45deg);
}

.hero-content p {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.45;
}

.coming-copy {
  margin-top: 8px !important;
}

.contact-actions {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 26px;
}

.contact-actions a {
  min-width: 220px;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 18px 8px;
}

.contact-actions a:focus-visible {
  outline: 3px solid var(--warning);
  outline-offset: 3px;
}

.phone-action {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.email-action {
  background: var(--button);
  color: #fff;
}

.action-main {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.email-action .action-main {
  text-transform: uppercase;
  letter-spacing: .04em;
}

.action-sub {
  display: block;
  margin-top: 4px;
  font-size: .86rem;
}

.phone-action .action-sub {
  color: var(--warning);
}

.email-action .action-sub {
  color: #fff;
  opacity: .92;
}

.action-separator {
  width: 1px;
  background: #d3d3d3;
}

/* FOOTER */
.site-footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 14px clamp(18px, 4vw, 64px) 10px;
  font-size: .9rem;
}

.footer-main {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.15fr .85fr 1.2fr;
  align-items: stretch;
}

.footer-main > * {
  min-width: 0;
  padding: 4px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-main > * + * {
  border-left: 1px solid rgba(255,255,255,.55);
}

.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.site-footer address {
  font-style: normal;
  line-height: 1.4;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  width: min(100%, 1320px);
  margin: 10px auto 0;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.4);
  display: flex;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-size: .78rem;
}

.footer-bottom strong {
  color: var(--warning);
}

/* MOBILE */
@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .hero-image-wrap {
    height: clamp(185px, 29vh, 260px);
  }

  .hero-content {
    padding: 22px 20px 28px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
  }

  h2 {
    margin-top: 20px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .contact-actions a {
    width: min(100%, 360px);
    margin-inline: auto;
    min-height: 52px;
  }

  .action-separator {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > * {
    padding: 5px 8px;
  }

  .footer-main > * + * {
    border-left: 0;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
}

@media (max-width: 520px) {
  .brand-banner {
    width: 100%;
    height: auto;
  }

  .hero-image-wrap {
    height: 190px;
  }

  .hero-content {
    padding: 20px 18px 24px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.42;
  }

  .site-footer {
    padding: 16px 14px 12px;
  }

  .footer-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.phone-action .action-main {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  font-variant-numeric: lining-nums tabular-nums;
}


/* PORTRAIT QA — desktop/landscape remains locked */
@media (max-width: 1024px) and (orientation: portrait) {
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .landing-main {
    flex: 1 0 auto;
  }

  .site-footer {
    margin-top: auto;
  }

  .hero-image-wrap {
    height: clamp(220px, 30vh, 320px);
  }

  .hero-content {
    width: min(100%, 860px);
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 700px) and (orientation: portrait) {
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-actions a {
    width: min(100%, 360px);
  }

  .action-separator {
    display: none;
  }
}


/* iPHONE QA — narrower mobile only */
@media (max-width: 520px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .brand-banner {
    width: 100%;
    height: auto;
    object-fit: fill;
  }

  .hero-image-wrap {
    height: 180px;
  }

  .hero-image {
    object-position: center 54%;
  }

  .hero-content {
    width: 100%;
    padding: 18px 16px 22px;
  }

  h1 {
    max-width: 360px;
    font-size: 1.95rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.45rem;
    margin-top: 18px;
  }

  .brand-divider {
    width: min(100%, 300px);
    gap: 12px;
    margin: 12px auto;
  }

  .hero-content p {
    max-width: 360px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .contact-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .contact-actions a {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }

  .phone-action .action-main,
  .email-action .action-main {
    font-size: 1.1rem;
  }

  .site-footer {
    padding: 14px 14px 10px;
    font-size: .84rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > * {
    padding: 4px 6px;
    border-left: 0 !important;
  }

  .footer-brand {
    font-size: 1rem;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 8px;
    flex-direction: column;
    gap: 4px;
    font-size: .75rem;
  }

  body,
  html {
    overflow-x: hidden;
  }
}
