:root {
  --green: #60865d;
  --green-dark: #60865d;
  --green-hover: #4f704d;
  --ink: #3d3d3d;
  --muted: #747474;
  --line: #e4e4e0;
  --paper: #ffffff;
  --soft: #f7f8f3;
  --shadow: 0 18px 48px rgba(45, 61, 37, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body {
  margin: 0;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.content,
.hero-inner {
  width: calc(100vw - 36px);
  max-width: 1080px;
  margin: 0 auto;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 230px;
  height: auto;
  display: block;
}

.menu-button {
  display: none;
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: absolute;
}

.menu-button span {
  position: relative;
}

.menu-button::before {
  transform: translateY(-7px);
}

.menu-button::after {
  transform: translateY(7px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a,
.nav-link {
  text-decoration: none;
  padding: 12px 11px;
  color: #565656;
  border-radius: 4px;
}

.nav a:hover,
.nav a.active,
.nav-link:hover {
  color: var(--green-dark);
  background: var(--soft);
}

.dropdown {
  position: relative;
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 6px;
}

.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
  display: grid;
}

.dropdown-panel a {
  text-transform: none;
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 42%, rgba(255,255,255,0.1) 100%),
    url("assets/hero.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  width: min(560px, 100%);
  padding: 72px 0 96px;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 22px;
  color: #373737;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0 0 18px;
}

.lead {
  font-size: clamp(19px, 2.5vw, 26px);
  line-height: 1.45;
  color: #575757;
}

.notice {
  margin-top: 26px;
  font-size: 18px;
  color: #424242;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--green-hover);
  background: var(--green);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  border-radius: 3px;
}

.button:hover {
  background: var(--green-hover);
}

.content {
  padding: 62px 0 76px;
}

.narrow {
  max-width: 820px;
}

.home-sections {
  display: grid;
  gap: 30px;
}

.welcome-panel {
  max-width: 760px;
}

.welcome-panel {
  margin: 0 auto;
  text-align: center;
}

.welcome-panel h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 18px;
}

.welcome-panel p {
  color: #5f5f5f;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: 690px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quick-actions a {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.35;
  padding: 18px;
  text-align: center;
  text-decoration: none;
}

.quick-actions a:hover {
  border-color: rgba(96, 134, 93, 0.45);
  background: #fff;
}

.feature-grid,
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-section-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  padding: 28px 28px 26px;
  border-radius: 4px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid rgba(96, 134, 93, 0.34);
  border-radius: 50%;
  color: var(--green-dark);
  background: #fff;
  font-size: 13px;
}

.feature-card h2,
.feature-card h3,
.service-summary h2,
.service-summary h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.feature-card h2 {
  color: #373737;
}

.feature-card h3,
.service-summary h3 {
  color: var(--green-dark);
}

.feature-card p {
  color: #5f5f5f;
  margin-bottom: 0;
}

.feature-card p + h3 {
  margin-top: 22px;
}

.feature-card .button {
  margin-top: 24px;
}

.booking-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 28px;
  border-radius: 4px;
}

.booking-strip h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.booking-strip p {
  margin-bottom: 0;
  color: #5f5f5f;
}

.service-summary {
  margin-top: 34px;
}

.service-card-grid .service-summary {
  margin-top: 28px;
}

.service-section-list .service-summary {
  margin-top: 0;
}

.service-room-feature {
  position: relative;
  display: grid;
  place-items: center;
  margin: 34px 0 0;
  overflow: hidden;
  border-radius: 4px;
}

.service-room-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 32, 24, 0.16);
}

.service-room-photo {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 60%;
}

.service-room-button {
  position: absolute;
  z-index: 1;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.about-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.about-media {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
}

.about-photo-framed {
  border: 8px solid #e7e7e3;
}

.about-copy {
  max-width: 760px;
}

.section-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 44px 0;
}

.service-links {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

.service-links a {
  border: 1px solid var(--line);
  padding: 20px 22px;
  text-decoration: none;
  color: var(--green-dark);
  font-size: 20px;
  background: var(--soft);
  border-radius: 4px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 44px;
  align-items: start;
}

.contact-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 4px;
}

.contact-aside {
  display: grid;
  gap: 22px;
}

.contact-photo {
  display: block;
  width: 100%;
  height: auto;
}

.contact-map {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}

.form-grid {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #565656;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d0d0ca;
  border-radius: 3px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

ol,
ul {
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

.tool-list {
  display: grid;
  gap: 7px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 18px;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-answer {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}

.privacy h2 {
  font-size: 24px;
  margin-top: 34px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: #666;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #666;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.social-icon:hover {
  background: var(--soft);
  border-color: var(--green-hover);
  color: var(--green-hover);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 780px) {
  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 190px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 18px 18px;
    flex-direction: column;
    align-items: stretch;
  }

  body.nav-open .nav {
    display: flex;
  }

  .dropdown-panel {
    display: grid;
    position: static;
    border: 0;
    box-shadow: none;
    padding-left: 14px;
  }

  .hero {
    min-height: calc(100vh - 74px);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.74) 55%, rgba(255,255,255,0.28) 100%),
      url("assets/hero.png") center bottom / cover no-repeat;
  }

  .hero-copy {
    padding: 42px 0 72px;
    width: min(100%, 330px);
  }

  .hero-copy h1 {
    font-size: 31px;
    overflow-wrap: normal;
  }

  .lead {
    font-size: 20px;
  }

  .content {
    padding: 44px 0 58px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-card-grid,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .service-room-photo {
    height: 210px;
  }

  .booking-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 580px;
  }
}

@media (max-width: 600px) {
  .header-inner,
  .footer-inner,
  .content,
  .hero-inner {
    max-width: 354px;
    margin-left: 18px;
    margin-right: auto;
  }

  .content h1 {
    font-size: 28px;
    max-width: 330px;
  }

  .faq-list summary {
    font-size: 17px;
    padding: 16px 18px;
  }

  .about-media {
    grid-template-columns: 1fr;
    max-width: 278px;
  }
}
