:root {
  color-scheme: light;
  --ink: #13251f;
  --forest: #12372d;
  --forest-deep: #09251e;
  --leaf: #28765a;
  --harvest: #f4b942;
  --sun: #ffdd75;
  --cream: #fff8e8;
  --paper: #f5f0df;
  --coral: #f0674d;
  --line: rgba(19, 37, 31, 0.16);
  --shadow: 0 22px 70px rgba(9, 37, 30, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 80px);
  color: #fff;
  background: rgba(9, 37, 30, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.brand strong {
  color: var(--sun);
  font-size: 20px;
}

.brand-mark {
  width: 18px;
  height: 40px;
  border-radius: 999px 999px 35% 35%;
  background: linear-gradient(180deg, var(--sun), var(--coral));
  transform: rotate(18deg);
  box-shadow: 11px -7px 0 -3px var(--leaf);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--sun);
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  padding: clamp(56px, 8vw, 110px) clamp(22px, 5vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(244, 185, 66, 0.34), transparent 24%),
    linear-gradient(135deg, #fff8e8 0%, #f0edd8 100%);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(54px, 7.2vw, 112px);
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 10px 25px rgba(18, 55, 45, 0.23);
}

.button-primary:hover {
  background: var(--forest-deep);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--forest);
}

.hero-note {
  margin-bottom: 0;
  color: rgba(19, 37, 31, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: 34px;
  background: var(--forest);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -24px 35% 35% -28px;
  border-radius: 32px;
  background: var(--harvest);
  transform: rotate(-4deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
}

.hero-visual figcaption {
  padding: 10px 7px 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.inquiry-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--coral);
  color: #fff;
}

.inquiry-strip span {
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.inquiry-strip span:last-child {
  border-right: 0;
}

.plan-section,
.callback-section {
  padding: clamp(70px, 9vw, 130px) clamp(22px, 7vw, 110px);
}

.plan-section {
  background: #fff;
}

.section-intro {
  max-width: 850px;
}

.section-intro > p:last-child {
  max-width: 720px;
  font-size: 19px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 52px 0 20px;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.steps li > span {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.steps p {
  margin-bottom: 0;
  color: rgba(19, 37, 31, 0.7);
}

.reservation-note {
  margin-bottom: 0;
  color: rgba(19, 37, 31, 0.68);
  font-size: 14px;
}

.callback-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
  color: #fff;
  background:
    radial-gradient(circle at 8% 88%, rgba(240, 103, 77, 0.2), transparent 30%),
    var(--forest-deep);
}

.callback-copy {
  position: sticky;
  top: 130px;
}

.callback-copy .eyebrow {
  color: var(--sun);
}

.callback-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 13px;
  margin-top: 36px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-style: normal;
}

.contact-card a {
  width: fit-content;
  color: var(--sun);
  font-weight: 800;
  text-underline-offset: 4px;
}

.callback-form {
  display: grid;
  gap: 19px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(19, 37, 31, 0.24);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(40, 118, 90, 0.2);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 600;
}

.consent input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-help,
.form-status {
  margin: -5px 0 0;
  font-size: 13px;
}

.form-help {
  color: rgba(19, 37, 31, 0.65);
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  color: var(--leaf);
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px clamp(22px, 5vw, 80px);
  color: rgba(255, 255, 255, 0.8);
  background: #061a15;
}

footer > div:first-child {
  display: grid;
  gap: 3px;
}

footer strong {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--sun);
  font-weight: 800;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--harvest);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    max-width: 800px;
  }

  .callback-section {
    grid-template-columns: 1fr;
  }

  .callback-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    align-items: flex-start;
  }

  nav {
    align-items: flex-end;
    flex-direction: column;
    gap: 7px;
  }

  nav a:first-child {
    display: none;
  }

  h1 {
    font-size: clamp(50px, 16vw, 78px);
  }

  .inquiry-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .inquiry-strip span:nth-child(2) {
    border-right: 0;
  }

  .inquiry-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: 0;
  }

  .steps li > span {
    margin-bottom: 28px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
