:root {
  --olive: #556b2f;
  --olive-dark: #38451f;
  --olive-soft: #75884b;
  --cream: #fbfaf3;
  --paper: #fffdf8;
  --gold: #c9a34b;
  --line: rgba(85, 107, 47, 0.22);
  --shadow: 0 22px 70px rgba(56, 69, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--olive);
  background: var(--cream);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  line-height: 1.45;
}

.holding-page {
  height: 100svh;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(420px, 1.08fr);
  background: radial-gradient(circle at 15% 10%, rgba(201, 163, 75, 0.16), transparent 32%), var(--cream);
}

.content-panel {
  height: 100svh;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vh, 30px);
  padding: clamp(26px, 5vw, 68px);
}

.site-logo {
  width: clamp(170px, 16vw, 245px);
  height: auto;
}

.copy-block {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(0.74rem, 1.1vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--olive-dark);
  font-size: clamp(2.15rem, 5vw, 5.15rem);
  font-weight: 600;
  line-height: 1.02;
}

.lead {
  max-width: 620px;
  margin: clamp(14px, 2.2vh, 24px) 0 0;
  color: var(--olive);
  font-size: clamp(1rem, 1.55vw, 1.32rem);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(210px, auto);
  gap: 18px;
  align-items: end;
  width: 100%;
  max-width: 760px;
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

h2 {
  margin: 0 0 8px;
  color: var(--olive-dark);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

address {
  color: var(--olive);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-style: normal;
}

address strong {
  color: var(--olive-dark);
}

.contact-links {
  display: grid;
  gap: 8px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--olive-dark);
  background: #fff;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.image-panel {
  height: 100svh;
  min-height: 560px;
  background: linear-gradient(0deg, rgba(35, 45, 22, 0.2), rgba(35, 45, 22, 0.2)), url("../images/botanicals.jpg") center / cover no-repeat;
}

@media (max-width: 900px) {
  .m-holding-page {
    height: 100svh;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: 30svh minmax(0, 70svh);
  }

  .m-image-panel {
    position: relative;
    z-index: 0;
    grid-row: 1;
    height: 30svh;
    min-height: 0;
    opacity: 1;
    background-position: center 42%;
  }

  .m-content-panel {
    position: relative;
    z-index: 1;
    grid-row: 2;
    height: 70svh;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(8px, 1.8svh, 16px);
    padding: clamp(12px, 3.6vw, 20px);
    background: var(--cream);
  }

  .m-site-logo {
    width: clamp(126px, 36vw, 176px);
    align-self: start;
  }

  .m-copy-block {
    align-self: center;
  }

  .m-eyebrow {
    margin-bottom: 8px;
    font-size: clamp(0.64rem, 2.6vw, 0.74rem);
    letter-spacing: 0.08em;
  }

  .m-title {
    font-size: clamp(1.72rem, 7.7vw, 2.85rem);
    line-height: 1.02;
  }

  .m-lead {
    max-width: 36rem;
    margin-top: 9px;
    font-size: clamp(0.88rem, 3.65vw, 1.02rem);
    line-height: 1.38;
  }

  .m-contact-card {
    grid-template-columns: 1fr;
    gap: 9px;
    max-width: none;
    padding: 11px 13px;
  }

  .m-contact-card h2 {
    margin-bottom: 5px;
    font-size: 0.95rem;
  }

  .m-contact-card address {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .m-contact-links {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .m-contact-links a {
    min-height: 34px;
    padding: 6px 9px;
    font-size: 0.86rem;
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .m-holding-page {
    grid-template-rows: 25svh minmax(0, 75svh);
  }

  .m-image-panel {
    height: 25svh;
  }

  .m-content-panel {
    height: 75svh;
    gap: 7px;
    padding: 10px 12px;
  }

  .m-site-logo {
    width: 116px;
  }

  .m-eyebrow {
    margin-bottom: 5px;
    font-size: 0.6rem;
  }

  .m-title {
    font-size: clamp(1.42rem, 7vw, 2.1rem);
  }

  .m-lead {
    margin-top: 7px;
    font-size: 0.8rem;
  }

  .m-contact-card {
    padding: 9px;
  }

  .m-contact-card h2 {
    font-size: 0.86rem;
  }

  .m-contact-card address,
  .m-contact-links a {
    font-size: 0.76rem;
  }

  .m-contact-links a {
    min-height: 31px;
  }
}


/* Mobile-only overflow correction: keeps desktop rules untouched. */
@media (max-width: 900px) {
  .m-holding-page {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .m-content-panel,
  .m-copy-block,
  .m-contact-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .m-title {
    max-width: 100%;
    font-size: clamp(1.42rem, 6.45vw, 2.22rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }

  .m-lead {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .m-title {
    font-size: clamp(1.22rem, 5.9vw, 1.72rem);
  }
}
/* Mobile-only viewport lock: prevents text from escaping the phone width. */
@media (max-width: 900px) {
  .m-holding-body {
    width: 100vw;
    max-width: 100vw;
  }

  .m-holding-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .m-content-panel {
    width: 100vw;
    max-width: 100vw;
    justify-items: stretch;
    padding-inline: 18px;
  }

  .m-copy-block {
    justify-self: center;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .m-title {
    width: 100%;
    font-size: clamp(1.48rem, 6.1vw, 1.9rem);
    line-height: 1.08;
  }

  .m-lead {
    width: 100%;
    font-size: clamp(0.82rem, 3.35vw, 0.96rem);
    line-height: 1.36;
  }

  .m-contact-card {
    justify-self: center;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .m-content-panel {
    padding-inline: 14px;
  }

  .m-copy-block,
  .m-contact-card {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .m-title {
    font-size: clamp(1.18rem, 5.45vw, 1.5rem);
  }
}
/* Mobile-only title fallback for narrow real devices after cache-busted stylesheet load. */
@media (max-width: 900px) {
  .m-title {
    font-size: clamp(1.24rem, 5.35vw, 1.62rem);
    line-height: 1.11;
  }
}
/* Mobile-only hard inline sizing for phones where the desktop copy width leaks into layout. */
@media (max-width: 900px) {
  .m-copy-block,
  .m-title,
  .m-lead,
  .m-eyebrow {
    inline-size: calc(100vw - 36px);
    max-inline-size: calc(100vw - 36px);
  }

  .m-title,
  .m-lead {
    white-space: normal;
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .m-copy-block,
  .m-title,
  .m-lead,
  .m-eyebrow {
    inline-size: calc(100vw - 28px);
    max-inline-size: calc(100vw - 28px);
  }
}
/* Mobile-only enforced text measure. */
@media (max-width: 900px) {
  .m-content-panel,
  .m-copy-block,
  .m-title,
  .m-lead,
  .m-eyebrow,
  .m-contact-card {
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .m-copy-block,
  .m-title,
  .m-lead,
  .m-eyebrow {
    display: block !important;
    width: calc(100vw - 36px) !important;
    max-width: calc(100vw - 36px) !important;
  }

  .m-title {
    font-size: 1.18rem !important;
    line-height: 1.14 !important;
    overflow-wrap: break-word !important;
  }

  .m-lead {
    font-size: 0.82rem !important;
    overflow-wrap: break-word !important;
  }
}
/* Mobile-only fixed phone measure for reliable wrapping on 390px screenshots and real devices. */
@media (max-width: 900px) {
  .m-copy-block,
  .m-title,
  .m-lead,
  .m-eyebrow {
    width: min(354px, calc(100vw - 36px)) !important;
    max-width: min(354px, calc(100vw - 36px)) !important;
    inline-size: min(354px, calc(100vw - 36px)) !important;
    max-inline-size: min(354px, calc(100vw - 36px)) !important;
  }

  .m-contact-card {
    width: min(354px, calc(100vw - 36px)) !important;
    max-width: min(354px, calc(100vw - 36px)) !important;
  }
}
/* Mobile-only left anchoring for cropped 390px browser captures and phones. */
@media (max-width: 900px) {
  .m-copy-block,
  .m-contact-card {
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
