/* ═══════════════════════════════════════════════════════════
   ELMWOOD HERITAGE INN – Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
    --background: #F4EDE4;
    --foreground: #1E1E1E;
    --card: #FFFFFF;
    --card-foreground: #1E1E1E;
    --popover: #FFFFFF;
    --popover-foreground: #1E1E1E;
    --primary: #172c2e;
    --primary-dark: #142527;
    --primary-foreground: #F4EDE4;
    --secondary: #e2c178;
    --secondary-foreground: #FFFFFF;
    --muted: #EBE4DB;
    --muted-foreground: #6B6560;
    --coral: #dfb797;

    --font-sans: 'futura-pt', 'Futura', 'Century Gothic', sans-serif;
    --font-serif: 'beaufort-pro', 'Georgia', 'Times New Roman', serif;

    --max-width: 1400px;
    --section-padding: 70px 0;
    --gutter: 2rem;

    --transition: 0.3s ease;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--foreground);
    background-color: var(--background);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

/* ─── Utility ────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary);
    transition: background-color var(--transition), box-shadow var(--transition);
}
.admin-bar .site-header {
    top: 32px; /* Adjust for WordPress admin bar */
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-header__logo img {
    height: 45px;
    width: auto;
}

.site-header__logo-text {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    color: var(--primary-foreground);
    letter-spacing: -1px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 100%;
}

.site-header__logo-text span {
    color: var(--secondary);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--primary-foreground);
    letter-spacing: 0.06em;
    transition: opacity var(--transition);
    position: relative;
}

.nav-link:hover {
    opacity: 0.75;
}

/* Hamburger Menu Toggle */
.site-header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-foreground);
    transition: transform var(--transition), opacity var(--transition);
}


.vertical-bn {
    position: fixed;
    right: 0;
    top: 50%;
    background: #132526;
    color: white;
    text-transform: uppercase;
    border-radius: 10px 0 0 10px;
    padding: 25px 15px 80px;
    font-size: 1.5rem;
    letter-spacing: 1.75px;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1.2;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all;
}
.vertical-bn:hover {
    padding-top: 30px;
    padding-bottom: 85px;
}

.vertical-bn span {
    position: absolute;
    bottom: 0;
    height: 60px;
    background-color: #2e4144;
    border-bottom-left-radius: .6rem;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-bn span:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #132526;
    outline: 9px solid white;
    border-radius: 50%;
}


/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: sticky;
    top: 0;
    padding-top: 72px; /* header offset */
    z-index: 0;
}

/* Intro (content below slideshow) */
.intro {
    position: relative;
    z-index: 1;
    background-color: var(--background);
}

.intro__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px var(--gutter) 80px;
    text-align: center;
}

/* Slideshow */
.hero__slideshow {
    width: 100%;
    height: calc(95vh - 72px);
    overflow: hidden;
    position: relative;
}

.hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero__slide--active {
    transform: translateX(0);
    z-index: 2;
}

.hero__slide--exit-left {
    transform: translateX(-100%);
    z-index: 2;
}

.hero__slide--enter-right {
    transform: translateX(100%);
}

.hero__slide--enter-left {
    transform: translateX(-100%);
}

.hero__slide--exit-right {
    transform: translateX(100%);
    z-index: 2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__image--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4a4d 100%);
}

/* Dots Navigation */
.hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.hero__dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.hero__dot--active {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
}

.hero__content {
    /* legacy — now handled by .intro__inner */
    max-width: 720px;
    margin: 0 auto;
    padding: 60px var(--gutter) 80px;
    text-align: center;
}

.hero__ornament {
    height: 6rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.hero__ornament svg {
    opacity: 0.6;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--foreground);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__description {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 32px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    letter-spacing: 0.02em;
    padding-bottom: 4px;
    position: relative;
}

.hero__cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--foreground);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__cta:hover::after {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════
   TAGLINE BANNER
   ═══════════════════════════════════════════════════════════ */
.tagline-section {
    position: relative;
    z-index: 1;
    background-position: 0px 0px, 0px 0px, 50% center;
    background-repeat: repeat-x, repeat, repeat;
    background-size: auto 20px, auto, 420px;
    padding-top: 11.25rem;
}

.tagline-wrap {
    z-index: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.tagline {
    background: var(--primary);
    border-radius: 50%;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 125vw;
    display: flex;
}

.tagline__inner {
    text-align: center;
    background-image: url(http://localhost:10014/wp-content/uploads/2026/03/67ff33fbafb8bf56c34a0bbe_Stamp_edge_clipping_mask-1.png);
    background-position: 50% 100%;
    background-repeat: repeat-x;
    background-size: auto 20px;
    width: 100vw;
    padding-top: clamp(5rem, 10vw, 10rem);
    padding-bottom: clamp(4.5rem, 9vw, 9rem);
}

.tagline-bg {
    z-index: -1;
    background-color: var(--primary);
    pointer-events: none;
    width: 100vw;
    height: 25rem;
    position: absolute;
    top: 50%;
}

.tagline__text {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--primary-foreground);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.tagline__italic {
    font-style: italic;
    color: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════
   OUR STORY SECTION
   ═══════════════════════════════════════════════════════════ */
.story {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: var(--section-padding);
}

.story__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.story__image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 30%;
}

.story__image {
    width: 28rem;
    height: 34rem;
    object-fit: cover;
    border-top-left-radius: 20rem;
    border-top-right-radius: 20rem;
}

.story__image--placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--muted) 0%, #d4cdc4 100%);
    border-radius: 2px;
}

.story__heading {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 32px;
}

.story__content-col {
    width: 50%;
}

.story__content {
    margin-bottom: 32px;
}

.story__content p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

.story__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    letter-spacing: 0.02em;
    padding-bottom: 4px;
    position: relative;
}

.story__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--foreground);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story__link:hover::after {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════
   STAY SECTION
   ═══════════════════════════════════════════════════════════ */
.stay {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 0 0 100px;
}

.stay__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.stay__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}

.stay__heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--foreground);
    line-height: 1;
}

.stay__link {
     display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    border: 1px solid var(--foreground);
    padding: 0.75rem 2rem 0.65rem;
    transition: 0.2s all;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.stay__link:hover {
    background: var(--primary);
    color: white;
}

.stay__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.room-card__image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.room-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-card__image {
    transform: scale(1.03);
}

.room-card__image--placeholder {
    background: linear-gradient(135deg, var(--muted) 0%, #d4cdc4 100%);
    aspect-ratio: 4 / 3;
}

.room-card__content {
    padding: 2rem 0 0;
}

.room-card__title {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: 12px;
}

.room-card__description {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--foreground);
    margin-bottom: 20px;
}

.room-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    padding-bottom: 3px;
    position: relative;
}

.room-card__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--foreground);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card__link:hover::after {
    transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════
   CHARACTER SECTION
   ═══════════════════════════════════════════════════════════ */
.character {
    position: relative;
    z-index: 1;
    background-color: var(--coral);
    overflow: hidden;
}

.character__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    padding: 5rem 7rem;
}

.character__content-col {
    background: white;
    display: flex;
    align-items: center;
    padding: 5rem 6rem;
}

.character__content-wrapper {
    max-width: 520px;
    margin-left: auto;
}

.character__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 32px;
}

.character__heading-italic {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--coral);
}

.character__content p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

.character__image-col {
    position: relative;
}

.character__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-top-right-radius: 100px;
}

.character__image--placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #2a4a4d 0%, #1a3a3d 100%);
}

/* ═══════════════════════════════════════════════════════════
   BREAKFAST SECTION
   ═══════════════════════════════════════════════════════════ */
.breakfast {
    position: relative;
    z-index: 1;
    padding: var(--section-padding);
    background: #f6f0e1;
}

.breakfast__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.breakfast__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 2px;
}

.breakfast__image--placeholder {
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg, var(--muted) 0%, #d4cdc4 100%);
    border-radius: 2px;
}

.breakfast__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--foreground);
    margin-bottom: 24px;
    line-height: 1.2;
}

.breakfast__content p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--foreground);
    margin-bottom: 16px;
}

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

/* ═══════════════════════════════════════════════════════════
   NEARBY SECTION
   ═══════════════════════════════════════════════════════════ */
.nearby {
    background-image: url(/wp-content/uploads/2026/03/67ff3425f0151cc87d6f0de1_Stamp_edge_clipping_mask-1.png);
    background-position: 0px 0px, 0px 0px, 50% center;
    background-repeat: repeat-x, repeat, repeat;
    background-size: auto 20px, auto, cover;
    padding-top: 6.25rem;
    padding-bottom: 100px;
    background-color: rgb(235, 227, 219);
    position: relative;
}

.nearby__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    text-align: center;
}

.nearby__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--foreground);
    margin-bottom: 16px;
}

.nearby__subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--foreground);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.nearby__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nearby__item {
    background: #f4ede4;
    border-radius: 4px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 0;
    text-align: center;
    transition: box-shadow var(--transition);
    justify-content: center;
    flex-direction: column;
}

.nearby__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.nearby__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nearby__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #236380;
    filter: invert(1);
    border-radius: 50%;
    padding: 10px;
}

.nearby__name {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

.nearby__distance {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.site-footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px var(--gutter) 48px;
}

.site-footer__logo {
    text-align: center;
    margin-bottom: 48px;
}

.site-footer__logo img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.site-footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--primary-foreground);
}

.site-footer__columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.site-footer__heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-foreground);
    margin-bottom: 16px;
}

.site-footer__text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(244, 237, 228, 0.65);
    margin-bottom: 20px;
}

/* Newsletter – Gravity Forms override */
.site-footer__newsletter .gform_wrapper {
    margin: 0;
    padding: 0;
}

.site-footer__newsletter .gform_body {
    margin: 0;
    padding: 0;
}

.site-footer__newsletter .gform_fields {
    display: flex !important;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid rgba(244, 237, 228, 0.3);
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.site-footer__newsletter .gfield {
    padding: 0 !important;
    margin: 0 !important;
    flex: 1;
}

.site-footer__newsletter .gfield_label,
.site-footer__newsletter .gform_validation_errors,
.site-footer__newsletter .gfield_description {
    display: none !important;
}

.site-footer__newsletter input[type="email"],
.site-footer__newsletter input[type="text"] {
    width: 100%;
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--primary-foreground);
    padding: 4px 0 !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: 1.4;
}

.site-footer__newsletter input[type="email"]::placeholder,
.site-footer__newsletter input[type="text"]::placeholder {
    color: rgba(244, 237, 228, 0.45);
}

.site-footer__newsletter .gform_footer,
.site-footer__newsletter .gform_page_footer {
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    right: 0;
    bottom: 8px;
}

.site-footer__newsletter .gform_wrapper form {
    position: relative;
}

.site-footer__newsletter input[type="submit"],
.site-footer__newsletter button[type="submit"] {
    background: none !important;
    border: none !important;
    color: var(--primary-foreground);
    cursor: pointer;
    padding: 4px !important;
    font-size: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: opacity var(--transition);
}

.site-footer__newsletter input[type="submit"]:hover,
.site-footer__newsletter button[type="submit"]:hover {
    opacity: 0.7;
}

/* Arrow icon for GF submit */
.site-footer__newsletter input[type="submit"],
.site-footer__newsletter button[type="submit"] {
    background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 8H15M15 8L8 1M15 8L8 15' stroke='%23F4EDE4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center center !important;
    background-size: 16px 16px !important;
}

.site-footer__newsletter .gform_confirmation_message {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--secondary);
    padding: 0;
    margin-bottom: 20px;
}

/* Social */
.site-footer__social {
    display: flex;
    gap: 16px;
}

.site-footer__social a {
    color: var(--primary-foreground);
    opacity: 0.65;
    transition: opacity var(--transition);
}

.site-footer__social a:hover {
    opacity: 1;
}

/* Footer Links */
.site-footer__links {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 8px;
}

.site-footer__links a {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(244, 237, 228, 0.65);
    transition: color var(--transition);
}

.site-footer__links a:hover {
    color: var(--primary-foreground);
}

.site-footer__links li:not(:has(a)) {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(244, 237, 228, 0.65);
    line-height: 1.6;
}

/* Bottom Bar */
.site-footer__bottom {
    border-top: 1px solid rgba(244, 237, 228, 0.1);
    background-color: rgba(0, 0, 0, 0.15);
}

.site-footer__bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer__brand {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary-foreground);
}

.site-footer__bottom-left a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(244, 237, 228, 0.5);
    transition: color var(--transition);
}

.site-footer__bottom-left a:hover {
    color: var(--primary-foreground);
}

.site-footer__bottom-right span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(244, 237, 228, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – Tablet
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .story__inner {
        gap: 48px;
    }

    .character__content-col {
        padding: 60px 40px;
    }

    .breakfast__inner {
        gap: 48px;
    }

    .site-footer__columns {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .story__content-col, .story__image-col {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – Mobile
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
        --gutter: 20px;
    }

    /* Header Mobile */
    .admin-bar .site-header {
        top: 46px;
    }

    .site-header__menu-toggle {
        display: flex;
    }

    .site-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background-color: var(--primary);
        padding: 100px 32px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .site-header__nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-link--cta {
        margin-top: 16px;
    }

    .site-header__logo-text {
        font-size: 1.5rem;
    }

    /* Hamburger active state */
    .site-header__menu-toggle.is-active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .site-header__menu-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .site-header__menu-toggle.is-active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .mobile-overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    /* Hero Mobile */
    .hero__slideshow {
        height: 50vh;
        min-height: 350px;
    }

    .hero__dots {
        bottom: 20px;
        gap: 10px;
    }

    .hero__dot {
        width: 8px;
        height: 8px;
    }

    .hero__content {
        padding: 40px var(--gutter) 60px;
    }

    .vertical-bn {
        font-size: 1.25rem;
    }

    /* Tagline Mobile */
    .tagline-wallpaper {
        height: 80px;
    }

    .tagline {
        padding: 40px var(--gutter) 48px;
    }

    .tagline__inner {
        padding: 2rem 2rem 1rem;
    }

    /* Story Mobile */
    .story__inner {
        gap: 40px;
        flex-direction: column;
    }

    .story__image {
        aspect-ratio: 16 / 10;
    }

    /* Stay Mobile */
    .stay__header {
        gap: 24px;
    }

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

    /* Character Mobile */
    .character__inner {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .character__content-col {
        padding: 48px var(--gutter);
        order: 2;
    }

    .character__image-col {
        position: relative;
        aspect-ratio: 16 / 10;
        order: 1;
    }

    .character__image,
    .character__image--placeholder {
        position: relative;
        aspect-ratio: 16 / 10;
        border-radius: 0;
    }

    /* Breakfast Mobile */
    .breakfast__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Nearby Mobile */
    .nearby__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Footer Mobile */
    .site-footer__columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .site-footer__bottom-left {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nearby__grid {
        grid-template-columns: 1fr;
    }

    .stay__tabs {
        flex-direction: column;
    }

    .stay__tab:last-child {
        border-left: 1px solid rgba(30, 30, 30, 0.15);
        border-radius: 0 0 2px 2px;
        border-top: none;
    }

    .stay__tab:first-child {
        border-radius: 2px 2px 0 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE – HERO BANNER
   ═══════════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    padding-top: 12rem;
    padding-bottom: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--primary);
    overflow: hidden;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 44, 46, 0.55);
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--gutter);
}

.page-hero__subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE – BODY CONTENT (Gutenberg)
   ═══════════════════════════════════════════════════════════ */
.page-body {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 80px 0;
}

.page-body__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--foreground);
}

.page-body__inner h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.page-body__inner h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    margin: 2rem 0 0.75rem;
    color: var(--primary);
}

.page-body__inner p {
    margin-bottom: 1.25rem;
}

.page-body__inner a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.page-body__inner a:hover {
    color: var(--secondary);
}

.page-body__inner ul,
.page-body__inner ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.page-body__inner li {
    margin-bottom: 0.4rem;
}

.page-body__inner img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.page-body__inner blockquote {
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE – MAP & DIRECTIONS
   ═══════════════════════════════════════════════════════════ */
.map-section {
    position: relative;
    z-index: 1;
    background-color: #EBE4DB;
    padding: var(--section-padding);
}

.map-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-section__map {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--muted);
}

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

.map-section__heading {
    font-family: var(--font-sans);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-section__content {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.map-section__content p {
    margin-bottom: 0.75rem;
}

.map-section__quote {
    background: #f4ece4;
    border-left: 3px solid var(--secondary);
    padding: 1rem 1.25rem;
    margin: 0 0 1.5rem;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.7;
}

.map-section__quote p {
    margin: 0;
}

.map-section__address {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE – GETTING HERE
   ═══════════════════════════════════════════════════════════ */
.getting-here {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: var(--section-padding);
}

.getting-here__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.getting-here__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.getting-here__cards {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.getting-here__card {
    background: var(--card);
    border-radius: 10px;
    padding: 2rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.getting-here__card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.getting-here__card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.getting-here__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
}

.getting-here__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1);
    padding: 12px;
}

.getting-here__card-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.getting-here__card-meta {
    display: flex;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #a67c52;
    margin: 0;
}

.getting-here__card-meta span + span::before {
    content: '·';
    margin-right: 0.75rem;
}

.getting-here__card-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 1rem 0 0;
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE – CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.page-cta {
    position: relative;
    z-index: 1;
    background-color: var(--primary-dark);
    padding: 80px 0;
    text-align: center;
}

.page-cta__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.page-cta__eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.page-cta__heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

.page-cta__text {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.page-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta__btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background var(--transition), color var(--transition);
    position: relative;
}

.page-cta__btn--primary {
    background: var(--secondary);
    color: var(--primary);
}

.page-cta__btn--primary:hover {
    background: #cba85e;
}

.page-cta__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.page-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGE – RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .page-body {
        padding: 48px 0;
    }

    .map-section__inner {
        grid-template-columns: 1fr;
    }

    .getting-here__cards {
        grid-template-columns: 1fr;
    }

    .page-cta {
        padding: 60px 0;
    }

    .page-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   ROOMS PAGE – ROOM CARDS
   ═══════════════════════════════════════════════════════════ */
.rooms-section {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: var(--section-padding);
}

.rooms-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* ─── Individual Room Card ─────────────────────────────── */
.rooms-section .room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.rooms-section .room-card:hover .room-card__image {
    transform: none;
}

/* ─── Room Slider ──────────────────────────────────────── */
.room-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.room-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-slider__slide--active {
    position: relative;
    opacity: 1;
    z-index: 1;
    height: 100%;
}

.room-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 30rem;
}

/* Arrows */
.room-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.room-card__image-col:hover .room-slider__arrow {
    opacity: 1;
}

.room-slider__arrow:hover {
    background: #fff;
}

.room-slider__arrow--prev {
    left: 0.75rem;
}

.room-slider__arrow--next {
    right: 0.75rem;
}

/* Dots */
.room-slider__dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.room-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease;
}

.room-slider__dot--active {
    background: #fff;
    border-color: #fff;
}

.room-card--reversed {
    direction: rtl;
}

.room-card--reversed > * {
    direction: ltr;
}

/* Image column */
.room-card__image-col {
    position: relative;
    overflow: hidden;
}

.room-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--primary);
    color: var(--secondary);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 2px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
}

/* Details column */
.room-card__details {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-card__name {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.room-card__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.room-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.room-card__meta-icon {
    opacity: 0.55;
    flex-shrink: 0;
}

.room-card__desc {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

/* Toggle button */
.room-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 0;
    margin-bottom: 0;
    transition: color var(--transition);
}

.room-card__toggle:hover {
    color: var(--secondary);
}

.room-card__toggle-icon {
    transition: transform 0.3s ease;
}

.room-card__toggle[aria-expanded="true"] .room-card__toggle-icon {
    transform: rotate(180deg);
}

.room-card__toggle[aria-expanded="true"] .room-card__toggle-text::after {
    content: '';
}

/* Amenities panel */
.room-card__amenities {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.room-card__amenities.is-open {
    opacity: 1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--muted);
}

.room-card__amenities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}

.room-card__amenities-list li {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--foreground);
    padding-left: 1rem;
    position: relative;
}

.room-card__amenities-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* Book button */
.room-card__btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.85rem 2rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background var(--transition);
    align-self: flex-start;
}

.room-card__btn:hover {
    background: var(--primary-dark);
}

/* ═══════════════════════════════════════════════════════════
   ROOMS PAGE – GENERAL NOTES
   ═══════════════════════════════════════════════════════════ */
.general-notes {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: var(--section-padding);
}

.general-notes__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.general-notes__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.general-notes__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 3rem;
}

.general-notes__content li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--foreground);
    padding-left: 1.25rem;
    position: relative;
}

.general-notes__content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   ROOMS PAGE – RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .rooms-section .room-card {
        grid-template-columns: 1fr;
    }

    .room-card--reversed {
        direction: ltr;
    }

    .rooms-section .room-card__image-col {
        aspect-ratio: 16 / 10;
    }

    .room-card__details {
        padding: 1.75rem 1.5rem;
    }

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

@media (max-width: 600px) {
    .general-notes__content ul {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   THE INN PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── Intro ────────────────────────────────────────────── */
.inn-intro {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 80px 0;
    text-align: center;
}

.inn-intro__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.inn-intro__eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.inn-intro__content p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.inn-intro__content p:last-child {
    margin-bottom: 0;
}

/* ─── What to Expect ───────────────────────────────────── */
.inn-expect {
    position: relative;
    z-index: 1;
    background-color: var(--primary-dark);
    padding: 80px 0;
}

.inn-expect__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inn-expect__image-col {
    border-radius: 6px;
    overflow: hidden;
}

.inn-expect__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    max-height: 27rem;
    object-fit: cover;
}

.inn-expect__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.75rem;
}

.inn-expect__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inn-expect__list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.inn-expect__check {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ─── Important to Know ────────────────────────────────── */
.inn-important {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 80px 0;
}

.inn-important__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inn-important__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.inn-important__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inn-important__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--primary);
    margin: 0;
}

.inn-important__intro {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.inn-important__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.inn-important__list li {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--foreground);
    padding-left: 1.25rem;
    position: relative;
}

.inn-important__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.45;
}

.inn-important__footer {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--foreground);
}

.inn-important__image-col {
    border-radius: 6px;
    overflow: hidden;
}

.inn-important__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ─── The Inn – Responsive ─────────────────────────────── */
@media (max-width: 768px) {
    .inn-intro {
        padding: 56px 0;
    }

    .inn-expect {
        padding: 56px 0;
    }

    .inn-expect__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .inn-important {
        padding: 56px 0;
    }

    .inn-important__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .inn-important__image-col {
        order: -1;
    }
}

/* ═══════════════════════════════════════════════════════════
   WEDDINGS PAGE
   ═══════════════════════════════════════════════════════════ */

/* ─── Intro ────────────────────────────────────────────── */
.wed-intro {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 80px 0;
    text-align: center;
}

.wed-intro__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.wed-intro__eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.wed-intro__content p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.wed-intro__content p:last-child {
    margin-bottom: 0;
}

/* ─── Feature Block ────────────────────────────────────── */
.wed-feature {
    position: relative;
    z-index: 1;
    background-color: var(--primary-dark);
    padding: 80px 0;
}

.wed-feature__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wed-feature__image-col {
    border-radius: 6px;
    overflow: hidden;
}

.wed-feature__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.wed-feature__heading {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.5rem;
}

.wed-feature__text p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.wed-feature__text p:last-child {
    margin-bottom: 0;
}

.wed-feature__text a {
    color: var(--secondary);
    text-decoration: none;
    font-style: italic;
}

.wed-feature__text a:hover {
    text-decoration: underline;
}

/* ─── Offerings Grid ───────────────────────────────────── */
.wed-offerings {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 80px 0;
}

.wed-offerings__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.wed-offerings__heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.wed-offerings__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.wed-offerings__card {
    background: var(--card);
    border: 1px solid var(--muted);
    border-radius: 8px;
    padding: 2rem 2rem 2.25rem;
}

.wed-offerings__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
}

.wed-offerings__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f4c1d0;
    padding: 11px;
    border-radius: 50%;
    filter: invert(1);
}

.wed-offerings__card-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.wed-offerings__card-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--foreground);
    margin: 0;
}

/* ─── Image Banner ─────────────────────────────────────── */
.wed-banner {
    position: relative;
    z-index: 1;
    line-height: 0;
}

.wed-banner__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

/* ─── Inquiry CTA ──────────────────────────────────────── */
.wed-inquiry {
    position: relative;
    z-index: 1;
    background-color: var(--background);
    padding: 80px 0;
    text-align: center;
}

.wed-inquiry__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.wed-inquiry__eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: var(--secondary);
    margin-bottom: 1rem;
}

.wed-inquiry__text {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.wed-inquiry__btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background var(--transition);
}

.wed-inquiry__btn:hover {
    background: var(--primary-dark);
}

/* ─── Weddings – Responsive ────────────────────────────── */
@media (max-width: 768px) {
    .wed-intro {
        padding: 56px 0;
    }

    .wed-feature {
        padding: 56px 0;
    }

    .wed-feature__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .wed-offerings {
        padding: 56px 0;
    }

    .wed-offerings__grid {
        grid-template-columns: 1fr;
    }

    .wed-banner__image {
        max-height: 320px;
    }

    .wed-inquiry {
        padding: 56px 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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