/* =========================================================
   BROCKINGTON HALL — INITIAL CLIENT PREVIEW
   Single-file version
   ========================================================= */

:root {
  --ink: #202321;
  --ink-soft: #555852;
  --cream: #f7f3eb;
  --cream-dark: #ebe4d6;
  --white: #ffffff;
  --gold: #b69a67;
  --gold-dark: #8f774c;
  --line: rgba(32, 35, 33, 0.15);

  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;

  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gold);
}

.desktop-nav a.active,
.mobile-nav a.active {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.nav-cta {
  padding: 12px 19px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(16, 19, 17, 0.78) 0%,
      rgba(16, 19, 17, 0.56) 42%,
      rgba(16, 19, 17, 0.2) 100%
    ),
    url("../images/sideview_walkway.jpg") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25),
    transparent 35%,
    rgba(0, 0, 0, 0.3)
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #e4c98f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.hero p {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

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

.button-gold:hover {
  background: #c6ad7c;
}

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

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

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* =========================================================
   INTRO
   ========================================================= */

.intro {
  padding: 115px 0;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.section-label {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.intro-copy p + p {
  margin-top: 20px;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.services {
  padding: 105px 0 115px;
  background: #eee8dc;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.05;
}

.section-heading p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 370px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.service-card:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.service-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.service-card h3 {
  margin-top: 75px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.service-card p {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.service-link {
  margin-top: auto;
  padding-top: 28px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================================================
   FEATURE / PROPERTY
   ========================================================= */

.property {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.property-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

.property-image {
  min-height: 620px;
  overflow: hidden;
}

.property-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.property-content .section-label {
  color: #d0b57a;
}

.property-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.03;
}

.property-content > p {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-item {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

/* =========================================================
   SUITES
   ========================================================= */

.suites {
  padding: 120px 0;
  background: var(--cream);
}

.suite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.suite-card {
  overflow: hidden;
  background: var(--white);
}

.suite-image {
  height: 360px;
  overflow: hidden;
}

.suite-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suite-info {
  padding: 32px;
}

.suite-info h3 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
}

.suite-info p {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.suite-info a {
  display: inline-block;
  margin-top: 23px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================================================
   USE CASES
   ========================================================= */

.uses {
  padding: 115px 0;
  background: #e9e1d3;
}

.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 55px;
  background: var(--line);
  border: 1px solid var(--line);
}

.use {
  padding: 34px;
  background: var(--cream);
}

.use span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.use h3 {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial {
  padding: 125px 0;
  text-align: center;
  background: var(--white);
}

.testimonial-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
}

.testimonial blockquote {
  max-width: 850px;
  margin: 25px auto 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.2;
  font-weight: 400;
}

.testimonial p {
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========================================================
   LOCATION
   ========================================================= */

.location {
  padding: 110px 0;
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.location-box {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: #d9d0c0;
  text-align: center;
}

.location-box-inner {
  max-width: 300px;
}

.location-box-inner strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.location-box-inner span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.05;
}

.location-content p {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: 105px 0;
  background: #eee8dc;
}

.faq-list {
  max-width: 850px;
  margin-top: 45px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 21px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 19px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 700px;
  padding: 0 40px 25px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(25, 28, 26, 0.86), rgba(25, 28, 26, 0.86)),
    url("../images/front_view_landscape.jpg") center / cover no-repeat;
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 800px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.final-cta p {
  max-width: 600px;
  margin: 23px auto 0;
  color: rgba(255, 255, 255, 0.75);
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 55px 0;
  background: #171a18;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
}

.footer-text {
  max-width: 350px;
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column h4 {
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.copyright {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

.footer-brand {
  justify-self: start;
  text-align: left;
}

.footer-logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* =========================================================
   SUITES PAGE
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.78), rgba(16, 19, 17, 0.35)),
    url("../images/inn_suite.jpg") center / cover no-repeat;
  color: var(--white);
}

.page-hero-content {
  max-width: 700px;
  padding-top: 70px;
}

.page-hero h1 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.page-hero p {
  max-width: 620px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.8;
}

.suite-intro {
  padding: 110px 0;
  background: var(--cream);
}

.suite-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.suite-intro h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.suite-intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.suite-intro-copy p + p {
  margin-top: 20px;
}

.suite-detail {
  padding: 115px 0;
}

.suite-detail:nth-child(even) {
  background: #eee8dc;
}

.suite-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.suite-detail:nth-child(odd) .suite-detail-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

/* .suite-detail-image {
  min-height: 560px;
  background-size: cover;
  background-position: center;
} */

.suite-detail-image {
  min-height: 560px;
  overflow: hidden;
}

.suite-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.suite-detail-content h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.03;
}

.suite-detail-content > p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.suite-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.suite-feature {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.suite-cta {
  padding: 110px 0;
  background: var(--white);
  text-align: center;
}

.suite-cta h2 {
  max-width: 760px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.suite-cta p {
  max-width: 600px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.suite-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* =========================================================
   MEETINGS PAGE
   ========================================================= */

.meetings-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.78), rgba(16, 19, 17, 0.35)),
    url("../images/hall_with_fireplace.jpg") center / cover no-repeat;
}

.meeting-intro {
  padding: 110px 0;
}

.meeting-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.meeting-intro h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.meeting-intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.meeting-intro-copy p + p {
  margin-top: 20px;
}

/* SPACES */

.meeting-spaces,
.meeting-features {
  border-top: 1px solid var(--line);
}

.meeting-spaces {
  padding: 110px 0;
  background: var(--cream);
}

.meeting-space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.meeting-space-card {
  background: var(--cream);
}

.meeting-space-image {
  min-height: 360px;
  height: 360px;
  overflow: hidden;
}

.meeting-space-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .meeting-space-image--ballroom {
  background-image: url("../images/hall.jpg");
}

.meeting-space-image--library {
  background-image: url("../images/hall_with_fireplace_sideview.jpg");
}

.meeting-space-image--veranda {
  background-image: url("../images/front_porch_couch.jpg");
} */

/* .meeting-space-image {
    min-height: 560px;
    overflow: hidden;
}

.meeting-space-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
} */

.meeting-space-content {
  padding: 30px;
}

.meeting-space-content h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.meeting-space-content p:last-child {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* USES */

.meeting-uses {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.meeting-uses-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.meeting-uses-heading h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.meeting-use-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.meeting-use {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.meeting-use > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.meeting-use h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.meeting-use p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

/* FEATURES */

.meeting-features {
  padding: 115px 0;
  background: var(--cream);
}

.meeting-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.meeting-feature {
  padding: 35px 40px 35px 0;
  border-bottom: 1px solid var(--line);
}

.meeting-feature:nth-child(even) {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.meeting-feature span {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.meeting-feature h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.meeting-feature p {
  max-width: 440px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* CTA */

.meeting-cta {
  padding: 115px 0;
  text-align: center;
  background-color: var(--white);
}

.meeting-cta h2 {
  max-width: 800px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.meeting-cta > .container > p:not(.section-label) {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.meeting-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* =========================================================
   EVENTS PAGE
   ========================================================= */

.events-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.78), rgba(16, 19, 17, 0.35)),
    url("../images/grand_mirror_view.jpg") center / cover no-repeat;
}

.events-hero .page-hero-content {
  max-width: 1280px;
}

.events-hero h1 {
  max-width: 920px;
}

/* INTRO */

.event-intro {
  padding: 110px 0;
  background: var(--cream);
}

.event-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.event-intro h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.event-intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.event-intro-copy p + p {
  margin-top: 20px;
}

/* SPACES */

.event-spaces {
  padding: 115px 0;
}

.event-space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.event-space-card {
  background: var(--cream);
}

.creative-space-image,
.event-space-image,
.event-details-image {
  min-height: 360px;
  overflow: hidden;
}

.creative-space-image img,
.event-space-image img,
.event-details-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.event-details-image {
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.event-details-image img {
  min-height: 0;
}

.event-space-content {
  padding: 30px;
}

.event-space-content h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.event-space-content p:last-child {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* EVENT TYPES */

.event-types {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.event-types-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.event-types-heading h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.event-types-heading > p:last-child {
  max-width: 430px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.event-type-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.event-type {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.event-type > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.event-type h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.event-type p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

/* DETAILS */

.event-details {
  padding: 115px 0;
  background: var(--cream);
}

.event-details-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
  align-items: center;
}

.event-details-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.event-details-content > p:not(.section-label) {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.event-detail-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.event-detail-list div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.event-detail-list span {
  display: inline-block;
  width: 42px;
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* CTA */

.event-cta {
  padding: 115px 0;
  text-align: center;
}

.event-cta h2 {
  max-width: 800px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.event-cta > .container > p:not(.section-label) {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.event-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.event-cta {
  background-color: var(--white);
}

/* =========================================================
   CREATIVE / PHOTO & FILM PAGE
   ========================================================= */

.creative-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.78), rgba(16, 19, 17, 0.35)),
    url("../images/grand_mirror_2.jpg") center / cover no-repeat;
}

.creative-intro {
  padding: 110px 0;
  background: var(--cream);
}

.creative-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.creative-intro h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.creative-intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.creative-intro-copy p + p {
  margin-top: 20px;
}

/* SPACES */

.creative-spaces {
  padding: 115px 0;
}

.creative-space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.creative-space-card {
  background: var(--cream);
}

.creative-feature-image {
  min-height: 600px;
  overflow: hidden;
}

.creative-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.creative-space-content {
  padding: 30px;
}

.creative-space-content h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.creative-space-content p:last-child {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

/* PROJECTS */

.creative-projects {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.creative-projects-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}

.creative-projects-heading h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.creative-projects-heading > p:last-child {
  max-width: 430px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.7;
}

.creative-project-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.creative-project {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.creative-project > span {
  padding-top: 4px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.creative-project h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.creative-project p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

/* FEATURE */

.creative-feature {
  padding: 115px 0;
  background: var(--cream);
}

.creative-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
  align-items: center;
}

.creative-feature-image {
  min-height: 600px;
  overflow: hidden;
}

.creative-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.creative-feature-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.creative-feature-content > p:not(.section-label) {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.creative-feature-content .button {
  margin-top: 30px;
}

/* CTA */

.creative-cta {
  padding: 115px 0;
  text-align: center;
  background-color: var(--white);
}

.creative-cta h2 {
  max-width: 800px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.creative-cta > .container > p:not(.section-label) {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.creative-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.78), rgba(16, 19, 17, 0.35)),
    url("../images/front_view_01.jpg") center 15% / cover no-repeat;
}

.contact-intro {
  padding: 110px 0 70px;
}

.contact-intro .section-heading {
  max-width: 760px;
}

.contact-section {
  padding: 40px 0 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 70px;
  align-items: start;
}

.inquiry-form-wrap {
  padding: 45px;
  background: var(--cream);
}

.inquiry-form-wrap h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
}

.inquiry-form {
  margin-top: 40px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230d1b2a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;

  padding-right: 42px;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.inquiry-form > .form-field {
  margin-bottom: 22px;
}

.inquiry-form .button {
  border: 0;
  cursor: pointer;
}

.form-note {
  max-width: 520px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.contact-details {
  background: var(--ink);
  color: var(--white);
  border-radius: 20px;
}

.contact-details-image {
  min-height: 330px;
  overflow: hidden;
}

.contact-details-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  border-bottom: 1px dotted var(--gold);
}

.contact-details-content {
  padding: 40px;
}

.contact-details-content .section-label {
  color: var(--gold);
}

.contact-details-content h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}

.contact-details-content > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.8;
}

.contact-detail-list {
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-label {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-details .text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.contact-details .text-link:hover {
  color: var(--gold);
}

.contact-tour {
  padding: 95px 0;
  background: var(--white);
}

.contact-tour-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-tour-content > div {
  max-width: 720px;
}

.contact-tour h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
}

.contact-tour p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.contact-faq {
  padding-top: 110px;
}

.contact-detail a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--gold);
}

.inquiry-note {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.inquiry-note strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.inquiry-note p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   LOCATION / CTA HELPERS
   ========================================================= */

.location-actions {
  margin-top: 30px;
}

.final-cta-label {
  color: #d0b57a;
}

/* =========================================================
   RECOGNITION
   ========================================================= */

.recognition {
  padding: 95px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recognition-heading {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.recognition-heading h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.15;
}

.recognition-heading p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 210px);
  justify-content: center;
  gap: 45px;
  margin-top: 55px;
}

.recognition-badge {
  width: 210px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition-badge img {
  display: block;
  width: 210px;
  height: 210px;
  object-fit: contain;
}

.mobile-nav {
  display: none;
}

/* =========================================================
   FAQ PAGE
   ========================================================= */

.faq-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.78), rgba(16, 19, 17, 0.35)),
    url("../images/hall_with_fireplace.jpg") center / cover no-repeat;
}

.faq-intro {
  padding: 110px 0;
  background: var(--cream);
}

.faq-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.faq-intro h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.faq-intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.faq-intro-copy p + p {
  margin-top: 20px;
}

.faq-section {
  padding: 110px 0;
  background: var(--cream);
}

.faq-section-dark {
  background: var(--ink);
  color: var(--white);
}

.faq-section-dark .section-label {
  color: var(--gold);
}

.faq-section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

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

.faq-list {
  max-width: 900px;
  margin-top: 50px;
}

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

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

.faq-section-dark .faq-list details {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 0;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
}

.faq-section-dark .faq-list summary::after {
  color: var(--gold);
}

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

.faq-list details p {
  max-width: 760px;
  padding: 0 50px 28px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.faq-section-dark .faq-list details p {
  color: rgba(255, 255, 255, 0.68);
}

.faq-cta {
  padding: 115px 0;
  background: var(--white);
  text-align: center;
}

.faq-cta h2 {
  max-width: 800px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.faq-cta > .container > p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.faq-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-outline {
  border-color: var(--line);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* =========================================================
   HISTORY PAGE
   ========================================================= */

.history-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 17, 0.8), rgba(16, 19, 17, 0.35)),
    url("../images/front_view_landscape.jpg") center / cover no-repeat;
}

.history-intro {
  padding: 110px 0;
  background: var(--cream);
}

.history-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.history-intro h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.history-intro-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.history-intro-copy p + p {
  margin-top: 20px;
}

/* FEATURE */

.history-feature {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.history-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
  align-items: center;
}

.history-feature-image {
  min-height: 620px;
  background: url("../images/hall_with_fireplace.jpg") center / cover no-repeat;
}

.history-feature-content .section-label {
  color: var(--gold);
}

.history-feature-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.history-feature-content p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

/* DETAILS */

.history-details {
  padding: 115px 0;
  background: var(--cream);
}

.history-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.history-detail {
  padding: 38px 40px 38px 0;
  border-bottom: 1px solid var(--line);
}

.history-detail:nth-child(even) {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.history-detail span {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.history-detail h3 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.history-detail p {
  max-width: 440px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

/* OWNERS */

.history-owners {
  padding: 115px 0;
  background: #e9e1d3;
}

.history-owners-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}

.history-owners h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.history-owners-copy p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.history-owners-copy p + p {
  margin-top: 20px;
}

/* ERA */

.history-era {
  padding: 115px 0;
  background: var(--ink);
  color: var(--white);
}

.history-era-light {
  background: var(--cream);
  color: var(--ink);
}

.history-era-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.history-era-number span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 70px;
  line-height: 1;
}

.history-era-content .section-label {
  color: var(--gold);
}

.history-era-content h2 {
  max-width: 700px;
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.history-era-content p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.history-era-light .history-era-content p {
  color: var(--ink-soft);
}

/* STORY */

.history-story {
  padding: 115px 0;
  background: var(--cream);
}

.history-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 85px;
  align-items: center;
}

.history-story-image {
  min-height: 600px;
  background: url("../images/grand_mirror_view.jpg") center / cover no-repeat;
}

.history-story-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.history-story-content p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

/* MODERN */

.history-modern {
  padding: 115px 0;
  background: var(--white);
}

.history-modern-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 85px;
  align-items: center;
}

.history-modern-image {
  min-height: 600px;
  background: url("../images/front_porch_couch.jpg") center / cover no-repeat;
}

.history-modern-content h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
}

.history-modern-content p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

/* STATS */

.history-stats {
  padding: 110px 0;
  background: #eee8dc;
  text-align: center;
}

.history-stats-heading {
  max-width: 720px;
  margin: 0 auto;
}

.history-stats-heading h2 {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
}

.history-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  justify-content: center;
  gap: 70px;
  margin-top: 65px;
}

.history-stat {
  display: flex;
  flex-direction: column;
}

.history-stat strong {
  font-family: var(--serif);
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
}

.history-stat span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* CTA */

.history-cta {
  padding: 115px 0;
  background: var(--white);
  text-align: center;
}

.history-cta h2 {
  max-width: 800px;
  margin: 15px auto 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.history-cta > .container > p {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.history-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Venue */

/* =========================================================
   VENUE DETAILS
   ========================================================= */

.venue-details {
  padding: 115px 0;
  background: var(--cream);
}

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

.venue-details .section-heading p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.venue-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue-overview-item {
  padding: 30px 25px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.venue-overview-item:last-child {
  border-right: none;
}

.venue-overview-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.venue-overview-item span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-room-list {
  margin-top: 65px;
  border-top: 1px solid var(--line);
}

.venue-room {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 35px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.venue-room-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 24px;
}

.venue-room-content {
  max-width: 780px;
}

.venue-room-content h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.venue-room-content p {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.venue-room-content p + p {
  margin-top: 12px;
}

/* COMMUNITY */
/* =========================================================
   COMMUNITY
   ========================================================= */

.community {
  padding: 115px 0;
  background: var(--cream);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.community-content {
  max-width: 600px;
}

.community-content h2 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.12;
}

.community-content p:not(.section-label) {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.community-content .button {
  margin-top: 30px;
}

.community-image {
  min-height: 560px;
}

.community-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.event-spaces,
.suite-intro,
.event-intro,
.meeting-intro,
.creative-intro,
.contact-intro {
  background-color: var(--white) !important;
}

.creative-spaces,
.meeting-spaces,
.event-spaces {
  background-image: url(../images/texture-flower.jpg);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 950px) {
  .faq-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] {
    transform: rotate(90deg);
  }

  /* =======================================================
     MOBILE NAVIGATION
     ======================================================= */

  .mobile-nav {
    display: block;
    max-height: 0;
    padding: 0 24px;
    overflow: hidden;

    background: var(--white);
    border-top: 0 solid var(--line);
    opacity: 0;

    transition:
      max-height 0.45s ease,
      padding 0.35s ease,
      opacity 0.25s ease,
      border-top-width 0.35s ease;
  }

  .mobile-nav.is-open {
    max-height: 500px;
    padding: 20px 24px 25px;
    border-top-width: 1px;
    opacity: 1;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 0;

    border-bottom: 1px solid var(--line);

    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transform: translateY(-8px);
    opacity: 0;

    transition:
      transform 0.3s ease,
      opacity 0.25s ease;
  }

  .mobile-nav.is-open a {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-nav.is-open a:nth-child(1) {
    transition-delay: 0.04s;
  }

  .mobile-nav.is-open a:nth-child(2) {
    transition-delay: 0.08s;
  }

  .mobile-nav.is-open a:nth-child(3) {
    transition-delay: 0.12s;
  }

  .mobile-nav.is-open a:nth-child(4) {
    transition-delay: 0.16s;
  }

  .mobile-nav.is-open a:nth-child(5) {
    transition-delay: 0.2s;
  }

  .mobile-nav.is-open a:nth-child(6) {
    transition-delay: 0.24s;
  }

  .mobile-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }

  /* =======================================================
     GENERAL RESPONSIVE
     ======================================================= */

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

  .property-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .property-image {
    min-height: 500px;
  }

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

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

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

  .suite-intro-grid,
  .suite-detail-grid,
  .suite-detail:nth-child(odd) .suite-detail-grid {
    grid-template-columns: 1fr;
  }

  .suite-detail-image {
    min-height: 500px;
  }

  /* =======================================================
     MEETINGS
     ======================================================= */

  .meeting-intro-grid,
  .meeting-uses-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .meeting-space-grid {
    grid-template-columns: 1fr;
  }

  .meeting-space-image {
    min-height: 450px;
  }

  /* =======================================================
     EVENTS
     ======================================================= */

  .event-intro-grid,
  .event-types-grid,
  .event-details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .event-space-grid {
    grid-template-columns: 1fr;
  }

  .event-space-image {
    min-height: 450px;
  }

  .event-details-image {
    min-height: 500px;
  }

  /* =======================================================
     CREATIVE PAGE
     ======================================================= */

  .creative-intro-grid,
  .creative-projects-grid,
  .creative-feature-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .creative-space-grid {
    grid-template-columns: 1fr;
  }

  .creative-space-image {
    min-height: 450px;
  }

  .creative-feature-image {
    min-height: 500px;
  }

  /* =======================================================
     CONTACT PAGE
     ======================================================= */

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-details-image {
    min-height: 100%;
  }

  .contact-tour-content {
    align-items: flex-start;
    flex-direction: column;
  }

  /* =======================================================
     RECOGNITION
     ======================================================= */

  .recognition-grid {
    grid-template-columns: repeat(2, 210px);
    gap: 35px;
  }

  .history-intro-grid,
  .history-owners-grid,
  .history-era-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .history-feature-grid,
  .history-story-grid,
  .history-modern-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .history-feature-image,
  .history-story-image,
  .history-modern-image {
    min-height: 500px;
  }

  /* Venue */

  .venue-overview {
    grid-template-columns: 1fr 1fr;
  }

  .venue-overview-item:nth-child(2) {
    border-right: none;
  }

  .venue-overview-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .community-content {
    max-width: 700px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-name {
    font-size: 23px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 51px;
  }

  .hero p {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .intro,
  .services,
  .property,
  .suites,
  .uses,
  .testimonial,
  .location,
  .faq {
    padding: 80px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .service-card {
    min-height: 300px;
  }

  .service-card h3 {
    margin-top: 45px;
  }

  .property-image {
    min-height: 400px;
  }

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

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

  .suite-image {
    height: 300px;
  }

  .location-box {
    min-height: 320px;
  }

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

  .final-cta {
    padding: 90px 0;
  }

  .page-hero {
    min-height: 600px;
  }

  .suite-intro,
  .suite-detail,
  .suite-cta {
    padding: 80px 0;
  }

  .suite-detail-image {
    min-height: 380px;
  }

  .suite-features {
    grid-template-columns: 1fr;
  }

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

  .suite-cta-actions .button {
    width: 100%;
  }

  /* =======================================================
     MEETINGS
     ======================================================= */

  .meeting-intro,
  .meeting-spaces,
  .meeting-uses,
  .meeting-features,
  .meeting-cta {
    padding: 80px 0;
  }

  .meeting-space-image {
    min-height: 360px;
  }

  .meeting-feature-grid {
    grid-template-columns: 1fr;
  }

  .meeting-feature,
  .meeting-feature:nth-child(even) {
    padding: 28px 0;
    border-left: none;
  }

  .meeting-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .meeting-cta-actions .button {
    width: 100%;
  }

  /* =======================================================
     EVENTS
     ======================================================= */

  .event-intro,
  .event-spaces,
  .event-types,
  .event-details,
  .event-cta {
    padding: 80px 0;
  }

  .event-space-image {
    min-height: 360px;
  }

  .event-details-image {
    min-height: 380px;
  }

  .event-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .event-cta-actions .button {
    width: 100%;
  }

  /* =======================================================
     CREATIVE PAGE
     ======================================================= */

  .creative-intro,
  .creative-spaces,
  .creative-projects,
  .creative-feature,
  .creative-cta {
    padding: 80px 0;
  }

  .creative-space-image {
    min-height: 360px;
  }

  .creative-feature-image {
    min-height: 380px;
  }

  .creative-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .creative-cta-actions .button {
    width: 100%;
  }

  /* =======================================================
     CONTACT PAGE
     ======================================================= */

  .contact-intro {
    padding: 80px 0 50px;
  }

  .contact-section {
    padding: 30px 0 80px;
  }

  .inquiry-form-wrap {
    padding: 28px 22px;
  }

  .inquiry-form-wrap h2 {
    font-size: 34px;
  }

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

  .contact-details {
    display: block;
  }

  .contact-details-image {
    min-height: 280px;
  }

  .contact-details-content {
    padding: 30px 24px;
  }

  .contact-details-content h2 {
    font-size: 32px;
  }

  .contact-tour {
    padding: 75px 0;
  }

  .contact-tour h2 {
    font-size: 38px;
  }

  /* =======================================================
     RECOGNITION
     ======================================================= */

  .recognition {
    padding: 75px 0;
  }

  .recognition-heading h2 {
    font-size: 38px;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .recognition-badge,
  .recognition-badge img {
    width: 100%;
    height: auto;
  }

  .faq-intro,
  .faq-section,
  .faq-cta {
    padding: 80px 0;
  }

  .faq-list {
    margin-top: 35px;
  }

  .faq-list summary {
    padding: 20px 40px 20px 0;
    font-size: 20px;
  }

  .faq-list summary::after {
    top: 17px;
  }

  .faq-list details p {
    padding-right: 25px;
    font-size: 14px;
  }

  .faq-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-cta-actions .button {
    width: 100%;
  }

  /* History */

  .history-intro,
  .history-feature,
  .history-details,
  .history-owners,
  .history-era,
  .history-story,
  .history-modern,
  .history-stats,
  .history-cta {
    padding: 80px 0;
  }

  .history-feature-image,
  .history-story-image,
  .history-modern-image {
    min-height: 380px;
  }

  .history-detail-grid {
    grid-template-columns: 1fr;
  }

  .history-detail,
  .history-detail:nth-child(even) {
    padding: 28px 0;
    border-left: none;
  }

  .history-era-number span {
    font-size: 55px;
  }

  .history-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .history-stat strong {
    font-size: 52px;
  }

  .history-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .history-cta-actions .button {
    width: 100%;
  }

  /* Venue  */

  .venue-details {
    padding: 80px 0;
  }

  .venue-overview {
    grid-template-columns: 1fr 1fr;
  }

  .venue-overview-item {
    padding: 25px 12px;
  }

  .venue-overview-item strong {
    font-size: 34px;
  }

  .venue-overview-item span {
    font-size: 9px;
  }

  .venue-room {
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 32px 0;
  }

  .venue-room-content h3 {
    font-size: 27px;
  }

  /* COMMUNITY */
  .community {
    padding: 80px 0;
  }

  .community-content h2 {
    font-size: 38px;
  }

  .community-image,
  .community-image img {
    min-height: 380px;
  }

  /* Footer Branding */
  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .footer-text {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column a {
        display: inline-block;
        margin: 0 7px;
    }

  .copyright {
    text-align: center;
  }
}
