:root {
  --bg: #fff7ef;
  --bg-soft: #ffe8d2;
  --peach: #ffc89b;
  --sand: #f4d7b6;
  --terracotta: #c5663f;
  --brown: #50372a;
  --card: rgba(255, 255, 255, 0.86);
  --line: rgba(197, 102, 63, 0.18);
  --shadow: 0 18px 45px rgba(114, 62, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, #ffe3c2 0, transparent 35%),
    radial-gradient(circle at 88% 12%, #ffd0b4 0, transparent 34%),
    linear-gradient(165deg, #fff8f1 0%, #fff3e6 45%, #fde8d6 100%);
  color: var(--brown);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.section__head {
  margin-bottom: 28px;
}

.section__eyebrow {
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 10px;
}

.section__head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin: 0;
}

.section__note {
  margin: 12px 0 0;
  opacity: 0.75;
}

.hero {
  position: relative;
  min-height: 95vh;
  color: #fff;
  background-image: url("image/IMG_9463.jpeg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(45, 26, 17, 0.82) 12%, rgba(80, 47, 29, 0.58) 52%, rgba(106, 56, 32, 0.65) 100%);
  z-index: -1;
}

.nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 12px;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-weight: 700;
}

.nav__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__content {
  padding: clamp(70px, 14vw, 150px) 0 80px;
  max-width: 820px;
}

.hero__tag {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  max-width: 64ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.95);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
}

.btn--solid {
  background: var(--terracotta);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brown);
  border-color: rgba(80, 55, 42, 0.15);
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.features {
  margin-top: -36px;
}

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

.facilities {
  padding-top: 36px;
}

.facility-wrap {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.facility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.facility-list li {
  background: rgba(255, 200, 155, 0.22);
  border: 1px solid rgba(197, 102, 63, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-family: "Fraunces", Georgia, serif;
}

.card p {
  margin: 0;
  line-height: 1.7;
}

.gallery {
  background: linear-gradient(180deg, rgba(255, 227, 194, 0.24), rgba(255, 246, 236, 0.85));
  border-top: 1px solid rgba(197, 102, 63, 0.1);
  border-bottom: 1px solid rgba(197, 102, 63, 0.12);
}

.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.location-item {
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(120, 70, 46, 0.08);
}

.location-thumb {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.location-item__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px;
}

.location-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.location-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.78;
}

.location-item p a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 700;
}

.location-item p a:hover {
  text-decoration: underline;
}

.location-item span {
  white-space: nowrap;
  font-weight: 800;
  color: var(--terracotta);
}

.location-item.is-active {
  border-color: rgba(197, 102, 63, 0.42);
  box-shadow: 0 12px 30px rgba(197, 102, 63, 0.2);
}

.job-search {
  padding-top: 52px;
}

.job-search__card {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.job-search__form {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.job-search__form input {
  flex: 1 1 280px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(197, 102, 63, 0.35);
  background: #fff;
  padding: 0 16px;
  font: inherit;
  color: var(--brown);
}

.job-search__form input:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(197, 102, 63, 0.15);
}

.job-result {
  margin-top: 14px;
}

.job-result__card {
  background: rgba(255, 200, 155, 0.15);
  border: 1px solid rgba(197, 102, 63, 0.22);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.job-result__card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
}

.job-result__card p {
  margin: 0;
  line-height: 1.6;
}

.job-result__map {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(197, 102, 63, 0.24);
  border-radius: 12px;
}

.map {
  padding-top: 38px;
}

.map-wrap {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: stretch;
}

.map-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.map-copy h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
}

.map-copy p {
  line-height: 1.7;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 350px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact {
  padding-top: 50px;
}

.contact-card {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
}

.contact-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-phone {
  margin: 8px 0 22px;
}

.contact-phone a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 800;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.38);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 32px rgba(37, 211, 102, 0.45);
}

.wa-float svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}

.footer {
  border-top: 1px solid rgba(197, 102, 63, 0.16);
  margin-top: 38px;
  padding: 20px 0;
  background: rgba(255, 243, 230, 0.75);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.footer p {
  margin: 0;
  font-weight: 600;
}

.footer a {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .feature-grid,
  .location-list,
  .map-wrap {
    grid-template-columns: 1fr;
  }

  .facility-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .nav {
    padding-top: 18px;
  }

  .nav__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-grid {
    column-count: 1;
  }

  .btn {
    width: 100%;
  }

  .job-search__form .btn {
    width: 100%;
  }

  .hero__cta .btn {
    width: auto;
  }

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

  .wa-float {
    width: 56px;
    height: 56px;
    right: 12px;
    bottom: 12px;
  }

  .wa-float svg {
    width: 30px;
    height: 30px;
  }
}
