

@font-face {
  font-display: swap;
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/fraunces-500.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/fraunces-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Kalam";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/kalam-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Kalam";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/kalam-700.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/source-sans-400.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/source-sans-500.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/source-sans-600.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/source-sans-700.ttf") format("truetype");
}

:root {
  --paper: #f8f3e9;
  --paper-deep: #efe6d6;
  --ink: #292925;
  --green: #214a3a;
  --green-soft: #dce5d8;
  --terracotta: #c96f50;
  --ochre: #d4a63a;
  --red: #ce3037;
  --white: #fffdf8;
  --line: rgba(33, 74, 58, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

h1,
h2 {
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  line-height: 1.05;
  margin-bottom: 0;
}

.site-header {
  align-items: center;
  background: rgba(248, 243, 233, 0.95);
  border-bottom: 1px solid rgba(33, 74, 58, 0.08);
  display: flex;
  height: 106px;
  justify-content: space-between;
  padding: 12px clamp(24px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.brand {
  align-items: center;
  display: flex;
  height: 78px;
  overflow: hidden;
  width: 286px;
}

.brand img {
  height: auto;
  width: 276px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.2vw, 38px);
  font-size: 16px;
  font-weight: 600;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
}

.desktop-nav > a:not(.nav-cta)::after {
  background: var(--terracotta);
  bottom: -6px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green);
  border-radius: 8px;
  color: white;
  padding: 14px 21px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  box-shadow: 0 8px 22px rgba(33, 74, 58, 0.16);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  min-height: 790px;
  overflow: hidden;
  padding: 84px clamp(24px, 5vw, 76px) 58px;
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 700px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.8rem, 6.3vw, 7rem);
  line-height: 0.97;
  margin-bottom: 28px;
}

.hero-intro {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.52;
  margin-bottom: 30px;
  max-width: 610px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  align-items: center;
  border: 1.5px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-size: 17px;
  font-weight: 700;
  gap: 16px;
  justify-content: center;
  min-height: 58px;
  padding: 14px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.text-link svg,
.job-grid a svg {
  height: 21px;
  transition: transform 180ms ease;
  width: 21px;
}

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

.button:hover svg,
.text-link:hover svg,
.job-grid a:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--green);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 8px 22px rgba(33, 74, 58, 0.17);
}

.button-secondary {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.button-secondary:hover {
  background: rgba(201, 111, 80, 0.07);
}

.hero-facts {
  align-items: center;
  display: flex;
  gap: 0;
  margin-top: 42px;
}

.hero-facts > div {
  align-items: center;
  border-right: 1px solid rgba(41, 41, 37, 0.22);
  display: flex;
  gap: 15px;
  margin-right: 22px;
  padding-right: 22px;
}

.hero-facts > div:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.hero-facts strong {
  font-size: 19px;
  white-space: nowrap;
}

.fact-icon {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.fact-icon svg {
  height: 31px;
  width: 31px;
}

.fact-icon.sage {
  background: var(--green-soft);
  color: var(--green);
}

.fact-icon.ochre {
  background: rgba(212, 166, 58, 0.42);
  color: #7c5812;
}

.hero-image-wrap {
  align-self: center;
  min-height: 630px;
  position: relative;
}

.hero-image {
  border-radius: 90px 24px 100px 28px;
  box-shadow: -26px 28px 0 -10px var(--terracotta);
  height: 620px;
  object-fit: cover;
  object-position: 50% 54%;
  position: absolute;
  right: -5vw;
  top: 18px;
  width: min(50vw, 760px);
  z-index: 2;
}

.hero-image-wrap > svg {
  bottom: auto;
  color: #8a9b7e;
  height: 112px;
  opacity: 0.75;
  position: absolute;
  right: -12px;
  top: 45px;
  transform: rotate(12deg);
  width: 112px;
  z-index: 4;
}

.image-label {
  background: var(--white);
  border-radius: 999px;
  bottom: 34px;
  color: var(--green);
  font-family: "Kalam", cursive;
  font-size: 17px;
  padding: 8px 18px;
  position: absolute;
  right: 28px;
  transform: rotate(-3deg);
  z-index: 4;
}

.paper-shape {
  position: absolute;
}

.paper-shape-two {
  background: #e4dfd0;
  border-radius: 38% 62% 56% 44%;
  height: 660px;
  right: -13vw;
  top: -30px;
  transform: rotate(-8deg);
  width: 850px;
}

@media (min-width: 1800px) {
  .hero {
    column-gap: clamp(80px, 5vw, 120px);
    grid-template-columns: minmax(0, 700px) minmax(0, 760px);
    justify-content: center;
  }

  .hero-image {
    right: 0;
    width: 100%;
  }

  .paper-shape-two {
    right: -120px;
  }
}

.trust-strip {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 26px clamp(24px, 7vw, 110px);
}

.trust-strip > div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0 20px;
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip svg {
  height: 34px;
  width: 34px;
}

.trust-strip span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.trust-strip small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.trust-strip a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.trust-strip a:hover {
  text-decoration-color: currentColor;
}

.section {
  margin: 0 auto;
  max-width: 1440px;
  padding: 130px clamp(24px, 6vw, 92px);
}

.intro-section,
.jobs-section {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.08fr 0.92fr;
}

.section-heading {
  max-width: 780px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading > p:last-child {
  font-size: 20px;
  margin: 28px 0 0;
  max-width: 700px;
}

.intro-copy {
  align-self: end;
  font-size: 20px;
  max-width: 650px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.image-story {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.35fr 0.65fr;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 clamp(24px, 6vw, 92px) 40px;
}

.image-story figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.image-story img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.image-story figure:hover img {
  transform: scale(1.02);
}

.story-main {
  border-radius: 12px 70px 12px 12px;
  height: 470px;
}

.story-small {
  border-radius: 70px 12px 12px 12px;
  height: 470px;
}

.image-story figcaption {
  background: rgba(33, 74, 58, 0.9);
  bottom: 18px;
  color: white;
  font-family: "Kalam", cursive;
  left: 18px;
  padding: 7px 15px;
  position: absolute;
}

.concept-section {
  padding-bottom: 150px;
}

.concept-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 78px;
}

.concept-grid article {
  border-left: 1px solid var(--line);
  padding: 0 30px 0 24px;
}

.concept-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.concept-grid span {
  color: var(--terracotta);
  font-family: "Kalam", cursive;
  font-size: 18px;
}

.concept-grid h3 {
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  margin: 18px 0;
}

.concept-grid p {
  margin-bottom: 0;
}

.rooms-section {
  align-items: center;
  background: var(--green-soft);
  display: grid;
  gap: 7vw;
  grid-template-columns: 1fr 0.88fr;
  max-width: none;
}

.rooms-image {
  border-radius: 18px 90px 18px 18px;
  height: 620px;
  overflow: hidden;
}

.rooms-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rooms-copy {
  max-width: 620px;
}

.rooms-copy ul {
  list-style: none;
  margin: 36px 0;
  padding: 0;
}

.rooms-copy li {
  border-bottom: 1px solid rgba(33, 74, 58, 0.2);
  padding: 13px 0 13px 30px;
  position: relative;
}

.rooms-copy li::before {
  color: var(--terracotta);
  content: "✦";
  left: 2px;
  position: absolute;
}

.text-link,
.job-grid a {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-weight: 700;
  gap: 12px;
}

.tour-section {
  background: #1a3d31;
  color: white;
  padding: 130px clamp(24px, 6vw, 92px);
}

.tour-heading {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto 54px;
  max-width: 1250px;
}

.tour-heading h2 {
  color: white;
}

.tour-heading > p {
  align-self: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  margin-bottom: 8px;
  max-width: 580px;
}

.tour-frame {
  background: #111;
  border: 10px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
}

.tour-notice {
  align-items: baseline;
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  display: flex;
  gap: 10px;
  margin: -24px auto 22px;
  max-width: 1280px;
  padding: 14px 18px;
}

.tour-notice strong {
  color: #f1c56a;
  flex: 0 0 auto;
}

.tour-notice span {
  color: rgba(255, 255, 255, 0.82);
}

.tour-frame iframe {
  border: 0;
  display: block;
  height: min(70vw, 720px);
  min-height: 430px;
  width: 100%;
}

.tour-placeholder {
  background: #102b22;
  height: min(70vw, 720px);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.tour-placeholder > img {
  filter: saturate(0.72) brightness(0.62);
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  width: 100%;
}

.tour-placeholder-overlay {
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(22, 55, 44, 0.3), rgba(10, 29, 23, 0.75));
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 34px;
  position: absolute;
  text-align: center;
}

.tour-play {
  color: white;
  display: block;
  height: 82px;
  margin-bottom: 18px;
  width: 82px;
}

.tour-play svg {
  height: 100%;
  stroke-width: 1.6;
  width: 100%;
}

.tour-placeholder-overlay p {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.tour-placeholder-overlay button,
.tour-close {
  background: var(--white);
  border: 0;
  border-radius: 8px;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 14px 23px;
}

.tour-placeholder-overlay small {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
}

.tour-loaded {
  position: relative;
}

.tour-close {
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.24);
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 8;
}

.tour-help {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin: 18px auto 0;
  max-width: 1280px;
  text-align: center;
}

.place-section {
  background: var(--terracotta);
  color: white;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 125px clamp(24px, 8vw, 130px);
}

.place-card {
  max-width: 710px;
}

.place-card .eyebrow {
  color: #f8d7c9;
}

.place-card h2 {
  color: white;
}

.place-card > p:not(.eyebrow) {
  font-size: 20px;
  margin: 30px 0 34px;
}

.button-light {
  background: var(--white);
  color: var(--green);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

.place-steps {
  align-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.place-steps li {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  gap: 22px;
  padding: 25px 0;
}

.place-steps li:first-child {
  padding-top: 0;
}

.place-steps > li > span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  flex: 0 0 42px;
  font-family: "Kalam", cursive;
  height: 42px;
  justify-content: center;
}

.place-steps strong {
  display: block;
  font-size: 20px;
}

.place-steps p {
  color: rgba(255, 255, 255, 0.78);
  margin: 4px 0 0;
}

.jobs-intro {
  align-self: end;
  font-size: 20px;
}

.job-grid {
  display: grid;
  gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.job-grid article {
  background: var(--white);
  border: 1px solid rgba(33, 74, 58, 0.12);
  border-radius: 12px 48px 12px 12px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 34px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.job-grid article:hover {
  box-shadow: 0 18px 50px rgba(33, 74, 58, 0.1);
  transform: translateY(-4px);
}

.job-grid.single-job {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.job-detail {
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-grid h3 {
  color: var(--green);
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  line-height: 1.15;
}

.job-image {
  aspect-ratio: 16 / 9;
  border-radius: 8px 30px 8px 8px;
  height: auto;
  margin: 12px 0 24px;
  object-fit: cover;
  width: 100%;
}

.job-grid a {
  margin-top: auto;
}

.unsolicited {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  text-align: center;
}

.unsolicited a {
  color: var(--terracotta);
  font-weight: 700;
  margin-left: 8px;
}

.faq-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.7fr 1.3fr;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

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

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

.faq-list summary span {
  color: var(--terracotta);
  font-family: "Kalam", cursive;
  font-size: 28px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 48px 20px 0;
}

.contact-section {
  background: var(--paper-deep);
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 120px clamp(24px, 8vw, 130px);
}

.contact-copy {
  max-width: 620px;
}

.contact-copy > p:last-child {
  font-size: 20px;
  margin-top: 28px;
}

.contact-list a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  padding: 20px 0;
}

.contact-list a > span {
  align-items: center;
  background: var(--green-soft);
  border-radius: 50%;
  color: var(--green);
  display: flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
}

.contact-list svg {
  height: 25px;
  width: 25px;
}

.contact-list div {
  font-size: 20px;
  font-weight: 600;
}

.contact-list small {
  color: #67675f;
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer {
  background: #16372c;
  color: white;
  padding: 80px clamp(24px, 6vw, 92px) 28px;
}

.footer-main {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 290px 1fr auto;
  padding-bottom: 60px;
}

.footer-main img {
  width: 270px;
}

.footer-main .footer-logo {
  background: var(--paper);
  border-radius: 14px;
  padding: 9px 13px;
  width: 290px;
}

.footer-main p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 480px;
}

.footer-links {
  display: grid;
  font-size: 15px;
  font-weight: 600;
  gap: 8px 28px;
  grid-template-columns: repeat(2, auto);
}

.footer-legal {
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.65);
  display: grid;
  font-size: 13px;
  gap: 20px 34px;
  grid-template-columns: 1fr auto auto;
  padding-top: 25px;
}

.footer-legal p {
  margin: 0 auto 0 0;
}

.footer-legal summary {
  color: white;
  cursor: pointer;
  list-style: none;
}

.footer-legal details {
  max-width: min(900px, 88vw);
}

.footer-legal details[open] {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
}

.footer-legal details div {
  background: rgba(255, 255, 255, 0.08);
  margin-top: 12px;
  padding: 18px;
}

.footer-legal .legal-copy {
  line-height: 1.55;
  max-height: 62vh;
  overflow-y: auto;
  padding: 24px 28px;
}

.legal-copy h3 {
  color: white;
  font-size: 15px;
  margin: 24px 0 7px;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.legal-copy a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
  }

  .hero-facts {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-facts > div {
    border-right: 0;
  }

  .concept-grid {
    gap: 44px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .concept-grid article:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .footer-main {
    grid-template-columns: 290px 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 17px;
  }

  .site-header {
    height: 84px;
    padding: 8px 20px;
  }

  .brand {
    height: 62px;
    width: 220px;
  }

  .brand img {
    width: 214px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    padding: 12px 8px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--green);
    height: 2px;
    width: 28px;
  }

  .mobile-menu nav {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 18px 60px rgba(33, 74, 58, 0.18);
    display: flex;
    flex-direction: column;
    min-width: 240px;
    padding: 14px;
    position: absolute;
    right: 0;
    top: 52px;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    font-weight: 600;
    padding: 11px 9px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding: 68px 22px 36px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .hero-image-wrap {
    margin-top: 54px;
    min-height: 470px;
    width: 100%;
  }

  .hero-image {
    border-radius: 60px 16px 70px 16px;
    height: 440px;
    right: -22px;
    width: calc(100% + 22px);
  }

  .paper-shape-two {
    height: 490px;
    right: -170px;
    width: 650px;
  }

  .hero-image-wrap > svg {
    height: 105px;
    right: -8px;
    top: 38px;
    width: 105px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts > div {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .hero-facts strong {
    font-size: 14px;
  }

  .fact-icon {
    height: 46px;
    width: 46px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 20px 24px;
  }

  .trust-strip > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    justify-content: flex-start;
    padding: 14px 0;
  }

  .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 84px 22px;
  }

  .intro-section,
  .jobs-section,
  .faq-section,
  .tour-heading,
  .place-section,
  .contact-section,
  .rooms-section {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .image-story {
    grid-template-columns: 1fr;
    padding: 0 22px 10px;
  }

  .story-main,
  .story-small {
    border-radius: 12px 50px 12px 12px;
    height: 300px;
  }

  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid article,
  .concept-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }

  .rooms-image {
    height: 420px;
  }

  .tour-section {
    padding: 90px 16px;
  }

  .tour-heading {
    padding: 0 6px;
  }

  .tour-notice {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    margin: -14px 6px 18px;
  }

  .tour-frame {
    border-width: 5px;
  }

  .tour-frame iframe {
    height: 68vh;
    min-height: 520px;
  }

  .tour-placeholder {
    height: 68vh;
    min-height: 520px;
  }

  .place-section {
    padding: 84px 22px;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .job-grid article {
    min-height: 310px;
  }

  .unsolicited {
    text-align: left;
  }

  .unsolicited a {
    display: block;
    margin: 5px 0 0;
  }

  .contact-section {
    padding: 84px 22px;
  }

  .contact-list div {
    font-size: 17px;
  }

  .footer-main {
    align-items: flex-start;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-legal p {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-image-wrap {
    min-height: 400px;
  }

  .hero-image {
    height: 370px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
