/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; margin:0; }
@font-face {
  font-family: "Palmers06";
  src: url("assets/fonts/Palmers06-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root{
  --green:#1e8a3e;
  --orange:#f39a1f;
  --gray:#6b6b6b;
}
body{
  font-family:"Palmers06", Georgia, "Times New Roman", serif;
  color:var(--gray);
  background:#ffffff;
}

/* Layout */
.split{
  display:grid;
  grid-template-columns:1fr;
  min-height:100dvh;
  align-items:stretch;
}
@media (min-width: 900px){
  .split{ grid-template-columns: 1fr 1fr; }
}

.left, .right{
  display:flex;
  justify-content:center;
}
.left.left-image{
  background-image: url("assets/images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 20%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 0;
  min-height: 48vh;
}
.right{
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: clamp(6px, 1.6vw, 16px);
  padding: clamp(16px, 3vw, 40px);
}

/* Brand */
q0px, 76.5%\);
  height:auto;
  margin-top: 24px;
  margin-bottom: 4px;
}

.divider{
  width:250px;
  max-width: 100%;
  height:auto;
  display:block;
  margin: 0 auto;
}



/* Copy blocks */
.copy{ max-width: 80ch; }
.copy.centered{ margin: 0 auto; }

.group{ margin-top: clamp(8px, 2vw, 18px); }

.orange{ color: var(--orange); }
.gray{ color: var(--gray); }

/* Address */
.address{
  font-size: clamp(34px, 4.2vw, 42px);
  line-height: 1.02;
  white-space: nowrap;
}

/* Hours */
.hours p{
  margin: 0 0 4px 0;
  font-size: clamp(24px, 2.7vw, 29px);
  line-height: 1.08;
}
/* Increase first two lines by 15% */
.hours p:nth-child(1),
.hours p:nth-child(2){
  font-size: clamp(28px, 3.1vw, 33px);
}
.hours p:nth-child(3){
  margin-top: 10px;
}
.hours p:last-child{ margin-bottom: 12px; }

/* Body text */
.bodytext p{
  margin: 0 0 clamp(10px, 1.4vw, 16px) 0;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.15;
  color: var(--gray);
}

/* Links */
.link{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a.orange{ color: var(--orange); text-decoration: none; border-bottom: 2px solid var(--orange); }
a.orange:hover{ opacity:.9; }



.right .logo{
  width: min(612px, 76.5%) !important;
  height: auto;
  transform-origin: top center;
}


/* Restored divider rules */

.divider {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.divider.under-logo { margin-top: 1.7px; margin-bottom: 3px; }
.divider.under-orange { margin-top: 26px; margin-bottom: 26px; }


/* --- Override: shrink logo by ~5% (between original and v35) --- */
.right .logo{
  width: min(646px, 80.75%) !important;
  height: auto;
  transform-origin: top center;
}
