:root {
  --bg: #ffffff;
  --bg-soft: #fafcf7;
  --green: #80bf35;
  --green-dark: #5f9425;
  --ink: #2a2a2a;
  --muted: #4b4b4b;
  --line: rgba(42, 42, 42, 0.14);
  --shadow: 0 18px 46px rgba(42, 42, 42, 0.12);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--bg);
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  isolation: isolate;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  top: 0;
  z-index: 0;
  width: clamp(760px, 72vw, 1320px);
  height: 132vh;
  content: "";
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

body::before {
  left: 0;
  background-image: url("Images/BG/BG_Left_v01.png");
  background-position: left top;
}

body::after {
  right: 0;
  background-image: url("Images/BG/BG_Right_v01.png");
  background-position: right top;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: start center;
  padding: clamp(46px, 10vh, 92px) 24px 56px;
}

.hero {
  width: min(100%, 760px);
  text-align: center;
}

.brand-logo {
  display: block;
  width: min(100%, 210px);
  height: auto;
  margin: 0 auto 22px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 24px;
  color: var(--green);
}

.ornament span {
  display: block;
  width: 86px;
  height: 1px;
  background: rgba(128, 191, 53, 0.58);
}

.ornament strong {
  font-size: 1.52rem;
  font-weight: 400;
  line-height: 1;
}

.ornament-short {
  margin: 18px auto 18px;
}

.ornament-short span {
  width: 48px;
  height: 2px;
}

h1 {
  max-width: 660px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: var(--green);
  font-weight: 700;
}

.intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.28;
}

.intro p {
  margin: 0;
}

.intro p + p {
  margin-top: 14px;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 42px auto 0;
  width: min(100%, 500px);
  padding: 24px 22px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.82);
}

.contact-item,
.contact-link {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  min-height: 122px;
  padding: 0 20px;
  color: var(--ink);
  font-family: var(--font-display);
  text-decoration: none;
}

.contact-link + .contact-link,
.contact-item + .contact-link {
  border-left: 1px solid var(--line);
}

.contact-item svg,
.contact-link svg {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link {
  transition: color 160ms ease, transform 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--green-dark);
  outline: none;
  transform: translateY(-2px);
}

.contact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
}

.contact-value {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
  font-weight: 400;
}

.closing {
  margin: 26px 0 0;
  color: var(--green);
  font-family: "Merienda", "Segoe Print", "Bradley Hand ITC", cursive;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
}

@media (max-width: 680px) {
  body::before,
  body::after {
    display: none;
  }

  .page-shell {
    padding: 32px 18px;
  }

  .hero {
    width: min(100%, 430px);
  }

  .brand-logo {
    width: min(100%, 190px);
  }

  .ornament span {
    width: 62px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
    padding: 26px 24px;
  }

  h1,
  .intro {
    max-width: 330px;
  }

  .intro {
    font-size: clamp(1.16rem, 5vw, 1.34rem);
  }

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

  .contact-item,
  .contact-link {
    min-height: auto;
    padding: 0;
  }

  .contact-link + .contact-link,
  .contact-item + .contact-link {
    padding-top: 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  body::before,
  body::after {
    width: 76vw;
    min-width: 520px;
    height: 126vh;
  }
}
