:root {
  --olive: #5b6345;
  --olive-dark: #3f472f;
  --ink: #2d2a25;
  --muted: #6e6a61;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --line: #d8d1c4;
  --shadow: 0 18px 50px rgba(31, 28, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 1px 0 rgba(63, 71, 47, 0.12);
  backdrop-filter: blur(14px);
}

.contact-strip {
  background: var(--olive-dark);
  color: #fff;
  font-size: 0.78rem;
}

.strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
}

.strip-links,
.nav-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
}

.brand-logo {
  width: min(260px, 44vw);
  height: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--olive);
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 15px;
  border: 1px solid var(--olive);
  border-radius: 50% 50% 45% 45%;
  transform: rotate(-28deg);
}

.brand-mark::after {
  inset: 8px 20px 11px 9px;
  transform: rotate(28deg);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.9;
}

.brand small {
  display: block;
  color: var(--olive);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  color: #403d37;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions .button {
  min-height: 40px;
  padding: 0.72rem 1rem;
}

.nav-actions .button + .button {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive-dark);
}

.nav-actions .button + .button:hover {
  background: var(--olive);
  color: #fff;
}

.button,
.lang-button {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.lang-button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--olive);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--olive-dark);
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.lang-button {
  min-height: 38px;
  padding: 0.45rem 0.65rem;
  background: transparent;
  color: var(--olive-dark);
}

.lang-button.is-active {
  background: var(--olive);
  color: #fff;
}

.hero {
  min-height: 76vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #211f1b;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 190, 78, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(23, 21, 17, 0.86), rgba(42, 33, 20, 0.55) 46%, rgba(78, 59, 25, 0.16));
}

.hero-content {
  position: relative;
  max-width: 640px;
  margin-left: max(1.25rem, calc((100vw - 1200px) / 2));
  padding: 5rem 1.25rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 7vw, 6.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 520px;
  margin: 1.2rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.3rem 1.25rem;
}

.features article {
  text-align: center;
  padding: 1.1rem 1.6rem;
  border-right: 1px solid var(--line);
}

.features article:last-child {
  border-right: 0;
}

.features .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.8rem;
  color: var(--olive);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.features .feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.features p {
  max-width: 220px;
  margin: 0.45rem auto 0;
  color: var(--muted);
}

.welcome-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.6rem 1.25rem;
  border-top: 1px solid var(--line);
}

.welcome-copy {
  align-self: start;
}

.welcome-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.info-panel article {
  min-height: 190px;
  padding: 1.6rem;
  background: #fff;
}

.info-panel h3 {
  color: var(--olive-dark);
}

.info-panel p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  background: var(--cream);
}

.split-copy {
  align-self: center;
  justify-self: end;
  max-width: 600px;
  padding: 5rem max(2rem, 6vw) 5rem 1.25rem;
}

.split-copy p:not(.eyebrow) {
  margin: 1.25rem 0 1.6rem;
  color: var(--muted);
}

.split-section img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.gazebo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.gazebo-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--shadow);
}

.gazebo-copy {
  max-width: 520px;
}

.gazebo-copy p:not(.eyebrow) {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.rooms-section,
.experience-section,
.reviews {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.room-grid,
.experience-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.room-card,
.experience-grid article,
.review-grid figure {
  background: #fff;
  box-shadow: var(--shadow);
}

.room-card {
  display: grid;
  grid-template-columns: 46% 1fr;
  min-height: 280px;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card div {
  padding: 2rem;
  align-self: center;
}

.room-card p,
.experience-grid p,
.review-grid blockquote,
.site-footer p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.experience-section {
  padding-top: 1rem;
}

.experience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.experience-grid article {
  min-height: 210px;
  padding: 2rem;
  border-top: 4px solid var(--olive);
}

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

.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.reviews {
  background: linear-gradient(180deg, var(--paper), var(--cream));
  max-width: none;
}

.reviews > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.review-grid figure {
  margin: 0;
  padding: 2rem;
  text-align: center;
}

.review-grid blockquote {
  margin: 0.8rem 0 1.1rem;
  font-style: italic;
}

.review-grid figcaption {
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--olive-dark);
  color: #fff;
}

.contact-panel {
  justify-self: end;
  width: min(100%, 600px);
  padding: 4rem 1.25rem;
}

.contact-panel .eyebrow,
.contact-panel h2 {
  color: #fff;
}

.contact-panel h2 {
  max-width: 12ch;
}

.contact-actions {
  margin-top: 1.6rem;
}

.contact-section iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.85);
}

.site-footer {
  padding: 3rem 1.25rem 1.3rem;
  color: var(--ink);
  background: #f3efe4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand .brand-mark,
.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after {
  border-color: #fff;
}

.footer-brand small,
.site-footer h2 {
  color: var(--olive-dark);
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0.35rem 0;
  color: var(--olive-dark);
}

.site-footer span {
  display: block;
  margin: 0.35rem 0;
  color: var(--muted);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.4rem;
}

.footer-badge img {
  width: 160px;
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-bottom a {
  display: inline;
  margin: 0;
  font-weight: 800;
}

@media (max-width: 980px) {
  .strip-inner,
  .navbar,
  .nav-links,
  .nav-actions {
    flex-wrap: wrap;
  }

  .navbar {
    align-items: flex-start;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .features,
  .experience-grid,
  .review-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .features article:nth-child(2) {
    border-right: 0;
  }

  .features article {
    border-bottom: 1px solid var(--line);
  }

  .split-section,
  .contact-section,
  .gazebo-section,
  .welcome-section {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .contact-panel {
    justify-self: stretch;
    max-width: none;
    width: auto;
    padding: 4rem 1.25rem;
  }

  .split-section img {
    min-height: 390px;
  }

  .gazebo-copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .contact-strip {
    display: none;
  }

  .navbar {
    padding: 0.9rem 1rem;
  }

  .brand strong {
    font-size: 1.6rem;
  }

  .brand-logo {
    width: min(220px, 62vw);
  }

  .nav-links {
    font-size: 0.68rem;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 4rem 1rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .features,
  .info-panel,
  .room-grid,
  .experience-grid,
  .review-grid,
  .gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .features article {
    border-right: 0;
  }

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

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card img,
  .gallery img {
    height: 260px;
  }
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(33, 31, 27, 0.78), rgba(33, 31, 27, 0.25)),
    url("photos/general-courtyard-garden-004.webp") center/cover fixed;
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem;
}

.form-header .brand {
  padding: 0.55rem 0.8rem;
  background: rgba(255, 253, 248, 0.9);
}

.form-header .language-switch {
  background: rgba(255, 253, 248, 0.94);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 2rem;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.form-intro {
  color: #fff;
  padding-top: 2rem;
}

.form-intro .eyebrow,
.form-intro h1 {
  color: #fff;
}

.form-intro h1 {
  max-width: 10ch;
}

.form-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.contact-details {
  margin-top: 2rem;
  padding-left: 1.2rem;
  border-left: 3px solid rgba(255, 255, 255, 0.7);
}

.contact-details p {
  margin: 0.3rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.form-message {
  max-width: 560px;
  margin: 1.35rem 0 0;
  padding: 0.95rem 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.form-message-success {
  background: rgba(67, 95, 57, 0.78);
}

.form-message-error {
  background: rgba(128, 58, 42, 0.78);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.recaptcha-field {
  min-height: 78px;
  overflow-x: auto;
}

.contact-form .button {
  width: 100%;
  margin-top: 0.4rem;
}

.suite-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 78vh;
  overflow: hidden;
}

.suite-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-hero-content {
  position: relative;
  max-width: 760px;
  margin-left: max(1.25rem, calc((100vw - 1200px) / 2));
  padding: 7rem 1.25rem 5rem;
  color: #fff;
}

.suite-hero-content .eyebrow {
  color: #fff;
}

.suite-hero-content h1 {
  max-width: 12ch;
}

.suite-hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.suite-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.25rem 3rem;
}

.suite-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.suite-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
}

.suite-highlights article {
  min-height: 220px;
  padding: 2rem;
  background: var(--cream);
  border-top: 4px solid var(--olive);
}

.suite-highlights h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suite-highlights p {
  color: var(--muted);
}

.suite-gallery-section {
  padding: 5rem 1.25rem;
  background: var(--cream);
}

.suite-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.suite-gallery-grid figure {
  margin: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.suite-gallery-grid .feature-photo {
  grid-column: span 2;
}

.suite-gallery-grid img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.suite-gallery-grid .feature-photo img {
  height: 620px;
}

.suite-gallery-grid figcaption {
  padding: 1.2rem 1.35rem 1.35rem;
  color: var(--muted);
}

.suite-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  color: #fff;
  background: var(--olive-dark);
}

.suite-cta .eyebrow,
.suite-cta h2 {
  color: #fff;
}

.suite-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 820px) {
  .form-shell {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }

  .form-intro h1 {
    max-width: 12ch;
  }

  .suite-intro,
  .suite-highlights,
  .suite-gallery-grid {
    grid-template-columns: 1fr;
  }

  .suite-gallery-grid .feature-photo {
    grid-column: span 1;
  }

  .suite-gallery-grid img,
  .suite-gallery-grid .feature-photo img {
    height: 390px;
  }

  .suite-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .form-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-form {
    padding: 1.25rem;
  }

  .suite-hero {
    min-height: 680px;
  }

  .suite-hero-content {
    padding: 4rem 1rem;
  }

  .suite-gallery-grid img,
  .suite-gallery-grid .feature-photo img {
    height: 300px;
  }
}
