:root {
    --ink: #2f3533;
    --muted: #687067;
    --cream: #F7F4EE;
    --paper: #fffdf8;
    --sand: #C6B39A;
    --taupe: #8d7f6a;
    --green: #41584b;
    --darkgreen: #32453a;
    --line: #e4d8c8;
    --white: #fff;
    --shadow: 0 24px 70px rgba(47,53,51,.12);
    --soft: 0 12px 40px rgba(47,53,51,.07);
    --radius: 28px;
    --ease: cubic-bezier(.19,1,.22,1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter,ui-sans-serif,system-ui, -apple-system,Segoe UI,Arial,sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.58;
    overflow-x: hidden;
	font-size: 16px;
}

body.menu-open {
    overflow: hidden;
}

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

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

.wrap {
    width: min(1180px,calc(100% - 42px));
    margin: auto;
}


.container {
    width: min(1180px, calc(100% - 42px));
    margin: auto;
    font-size: 18px;
    color: #60675f;
    padding: 172px 0 118px;
    position: relative;
}



::selection {
    background: var(--sand);
    color: var(--ink);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .9s var(--ease),transform .9s var(--ease);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(247,244,238,.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(231,222,208,.62);
    transition: box-shadow .35s var(--ease),background .35s var(--ease);
}

header.scrolled {
    background: rgba(247,244,238,.94);
    box-shadow: 0 12px 34px rgba(47,53,51,.08);
}

.nav {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    font-weight: 650;
}

.brand img {
    max-height: 100px;
    padding: 5px;
    width: auto;
}

.wordmark b {
    display: block;
    font-family: Georgia,serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: .22em;
    line-height: .8;
}

.wordmark span {
    display: block;
    font-size: 10px;
    letter-spacing: .38em;
    color: var(--taupe);
    margin-top: 8px;
}

.mark {
    width: 54px;
    height: 38px;
    flex: 0 0 auto;
}

.mark path {
    stroke: var(--green);
    transition: stroke .3s var(--ease);
}

.brand:hover .mark path {
    stroke: var(--darkgreen);
}

.links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    color: #565d57;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 1.3em;
    position: relative;
    padding: 28px 0;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.nav-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.nav-link:hover:after,.nav-link.active:after {
    transform: scaleX(1);
    transform-origin: left;
}

.dropdown {
    position: absolute;
    top: 72px;
    left: -24px;
    min-width: 250px;
    background: rgba(255,253,248,.97);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: .3s var(--ease);
}

.nav-item:hover .dropdown {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.dropdown a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: #4e5650;
}

.dropdown a:hover {
    background: #f2eadf;
    color: var(--green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 32px;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-toggle span {
    position: absolute;
    left: 4px;
    display: block;
    width: 32px;
    height: 2px;
    background: var(--green);
    border-radius: 999px;
    transform-origin: center;
    transition: top .35s var(--ease), transform .35s var(--ease), opacity .25s var(--ease), background .35s var(--ease);
    will-change: top,transform,opacity;
}

.menu-toggle span:nth-child(1) {
    top: 6px;
}

.menu-toggle span:nth-child(2) {
    top: 15px;
}

.menu-toggle span:nth-child(3) {
    top: 24px;
}

.menu-open .menu-toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

.mobile-panel {
    position: fixed;
    inset: 82px 14px auto 14px;
    z-index: 45;
    background: rgba(255,253,248,.98);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    transition: .35s var(--ease);
    max-height: calc(100vh - 100px);
    overflow: auto;
}

.menu-open .mobile-panel {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.mobile-panel a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 14px;
    border-radius: 16px;
    color: var(--ink);
}

.mobile-panel a:hover {
    background: #f4eee3;
}

.mobile-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--taupe);
    padding: 18px 14px 6px;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(47,53,51,.25);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: .35s var(--ease);
}

.menu-open .backdrop {
    opacity: 1;
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green);
    background: var(--green);
    color: white;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 650;
    font-size: 1em;
    transition: box-shadow .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease),color .35s var(--ease);
    white-space: nowrap;
}

.btn:hover {
    box-shadow: 0 14px 36px rgba(65,88,75,.18);
    background: var(--darkgreen);
    border-color: var(--darkgreen);
}

.btn.alt {
    background: transparent;
    color: var(--green);
}

.btn.alt:hover {
    background: rgba(65,88,75,.07);
    box-shadow: 0 12px 30px rgba(47,53,51,.08);
}

.hero {
    padding: 172px 0 118px;
    position: relative;
}

.hero:before {
    content: "";
    position: absolute;
    right: -24vw;
    top: 0;
    width: 58vw;
    height: 58vw;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(198,179,154,.46),rgba(198,179,154,0) 64%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 72px;
    align-items: center;
}

.eyebrow {
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--taupe);
    font-size: 14px;
    margin-bottom: 20px;
}

h1 {
    font-family: Georgia,'Times New Roman',serif;
    font-weight: 400;
    font-size: clamp(46px,7vw,92px);
    line-height: .96;
    letter-spacing: -.055em;
    margin: 0 0 28px;
    color: #343733;
}

.lead {
    font-size: 20px;
    color: #60675f;
    max-width: 640px;
    margin: 0 0 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    color: #6f756f;
    font-size: 14px;
    margin-top: 30px;
}

.trust span:before {
    content: '•';
    color: var(--sand);
    font-size: 26px;
    vertical-align: -3px;
    margin-right: 9px;
}

.photo-card {
    position: relative;
    min-height: 620px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(145deg,rgba(65,88,75,.16),rgba(198,179,154,.24)),var(--img) center/cover;
    transform: translateZ(0);
}

.photo-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(47,53,51,.38),transparent 54%);
    opacity: .75;
}

.floating {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 34px;
    width: min(360px,calc(100% - 60px));
    background: rgba(255,253,248,.74);
    backdrop-filter: blur(20px) saturate(1.18);
    border: 0px solid rgba(255,255,255,.72);
    border-radius: 26px;
    padding: 24px 26px 26px;
    text-align: left;
    box-shadow: 0 28px 70px rgba(47,53,51,.22),inset 0 1px 0 rgba(255,255,255,.75);
    transform: rotate(-2.2deg);
    transition: .65s var(--ease);
}

.floating-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(198,179,154,.28);
    border: 1px solid rgba(198,179,154,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.floating b {
    display: block;
    font-family: Georgia,serif;
    font-size: 22px;
    line-height: 1.22;
    font-weight: 400;
    letter-spacing: -.025em;
    color: #31463d;
    margin-bottom: 8px;
}

.floating small {
    display: block;
    color: #626961;
    font-size: 15px;
    line-height: 1.6;
}

section {
    padding: 136px 0;
}

.section-title {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 58px;
    align-items: end;
    margin-bottom: 68px;
}

h2 {
    font-family: Georgia,serif;
    font-weight: 400;
    font-size: clamp(34px,4.4vw,58px);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin: 0;
}

.section-title p {
    font-size: 18px;
    color: #626961;
    margin: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
}

.card,.house,.exp,.quote,.content-card {
    transition: box-shadow .45s var(--ease),border-color .45s var(--ease),background .45s var(--ease);
}

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

.card:hover,.house:hover,.exp:hover,.content-card:hover {
    box-shadow: 0 26px 60px rgba(47,53,51,.12);
    border-color: #CDBDA5;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eee5d6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 20px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: #687067;
    font-size: 15px;
}

.houses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.house {
    background: var(--paper);
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.house-img {
    height: 370px;
    background-size: cover;
    background-position: center;
    transition: transform .9s var(--ease);
}

.house:hover .house-img {
    transform: scale(1.035);
}

.house-body {
    padding: 44px;
}

.house h3 {
    font-family: Georgia,serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -.03em;
    margin: 0 0 10px;
}

.house p {
    color: #626961;
    margin: 0 0 22px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.features span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    color: #5e665f;
    font-size: 13px;
    background: #fbf8f1;
}

.experience {
    background: #394d42;
    color: white;
    position: relative;
    overflow: hidden;
}

.experience:before {
    content: "";
    position: absolute;
    inset: auto -12vw -28vw auto;
    width: 48vw;
    height: 48vw;
    border-radius: 50%;
    background: rgba(198,179,154,.16);
}

.experience .eyebrow,.experience p {
    color: #d7d1c7;
}

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

.exp {
    min-height: 260px;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
}

.exp:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg) center/cover;
    opacity: .24;
    transition: opacity .5s var(--ease),transform .8s var(--ease);
}

.exp:hover:before {
    opacity: .34;
    transform: scale(1.04);
}

.exp h3,.exp p {
    position: relative;
}

.exp h3 {
    font-family: Georgia,serif;
    font-weight: 400;
    font-size: 28px;
    margin: 0 0 8px;
}

.exp p {
    margin: 0;
    font-size: 14px;
    color: #e1ddd4;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery-filters button {
    border: 1px solid var(--line);
    background: rgba(255,253,248,.82);
    color: #596158;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: .35s var(--ease);
    font-weight: 650;
}

.gallery-filters button.active,.gallery-filters button:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
    box-shadow: 0 12px 32px rgba(65,88,75,.15);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 28px;
}

.gallery-item {
    break-inside: avoid;
    margin: 0 0 28px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: var(--paper);
    box-shadow: var(--soft);
    border: 1px solid rgba(228,216,200,.75);
    cursor: pointer;
    transition: opacity .35s var(--ease),filter .35s var(--ease),box-shadow .45s var(--ease);
}

.gallery-item.hide {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform .9s var(--ease),filter .9s var(--ease);
}

.gallery-item:hover {
    box-shadow: 0 26px 58px rgba(47,53,51,.13);
}

.gallery-item:hover img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 22px 20px;
    color: white;
    background: linear-gradient(to top,rgba(34,38,36,.62),transparent);
    opacity: 0;
    transition: .45s var(--ease);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-caption b {
    font-family: Georgia,serif;
    font-weight: 400;
    font-size: 22px;
}

.gallery-caption span {
    display: block;
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 5px;
    color: #efe7d8;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(30,34,31,.88);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    width: min(1120px,100%);
}

.lightbox-img-wrap {
    position: relative;
    background: #111;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #111;
    transition: opacity .18s;
}

.lightbox-close,.lightbox-prev,.lightbox-next {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,253,248,.12);
    color: white;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: .3s var(--ease);
}

.lightbox-close {
    right: 0;
    top: -54px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
}

.lightbox-prev,.lightbox-next {
    top: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 42px;
    line-height: 1;
}

.lightbox-prev {
    left: -66px;
}

.lightbox-next {
    right: -66px;
}

.lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover {
    background: rgba(255,253,248,.22);
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.lightbox-info {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255,253,248,.82);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 16px 20px;
    max-width: 420px;
}

.lightbox-info small {
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 750;
}

.lightbox-info h3 {
    margin: 3px 0 0;
    font-family: Georgia,serif;
    font-size: 28px;
    font-weight: 400;
}

.lightbox-count {
    position: absolute;
    left: 24px;
    top: 24px;
    background: rgba(255,253,248,.82);
    backdrop-filter: blur(16px);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 750;
    color: var(--green);
    z-index: 2;
}

.reviews-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 38px;
    box-shadow: var(--shadow);
    padding: 54px;
}

.reviews-head {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 42px;
}

.rating-large {
    display: flex;
    gap: 22px;
    align-items: center;
}

.google-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 800;
    color: #4285f4;
}

.rating-score {
    font-family: Georgia,serif;
    font-size: 64px;
    line-height: 1;
    color: var(--green);
}

.stars {
    color: #d4a73f;
    letter-spacing: .08em;
}

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

.review-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    background: #fffdf9;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eee5d6;
    color: var(--green);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.google-mini {
    font-weight: 800;
    color: #4285f4;
}

.reviewer span {
    display: block;
    color: #85897f;
    font-size: 12px;
}

.review-card p {
    color: #626961;
    margin-bottom: 0;
}

.blog-section {
    background: #fffdf8;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
}

.blog-featured,.blog-list-card,.content-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--soft);
}


.blog-image {
    min-height: 360px;
}

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

.blog-featured-body,.blog-list-card {
    padding: 34px;
}

.blog-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #85897f;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 750;
}

.blog-tag {
    color: var(--green);
}

.blog-featured h3,.blog-list-card h3 {
    font-family: Georgia,serif;
    font-weight: 400;
    letter-spacing: -.03em;
    margin: 14px 0 8px;
}

.blog-featured h3 {
    font-size: 34px;
}

.blog-list-card h3 {
    font-size: 25px;
}

.blog-featured p,.blog-list-card p {
    color: #626961;
}

.blog-list {
    display: grid;
    gap: 22px;
}

.blog-link {
    font-weight: 750;
    color: var(--green);
}

.blog-link span {
    transition: .25s;
}

.blog-link:hover span {
    margin-left: 6px;
}

.blog-cta {
    margin-top: 34px;
    background: #394d42;
    color: white;
    border-radius: 32px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-cta p {
    color: #d7d1c7;
    margin: 0;
}

.blog-cta h3 {
    font-family: Georgia,serif;
    font-weight: 400;
    font-size: 32px;
    margin: 0 0 8px;
}

.page-hero {
    padding: 166px 0 76px;
}

.page-hero h1 {
    max-width: 880px;
}

.page-hero .lead {
    max-width: 760px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.content-card {
    padding: 38px;
}

.content-card h3 {
    font-family: Georgia,serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: -.03em;
    margin: 0 0 12px;
}

.content-card p,.content-card li {
    color: #626961;
}

.content-card ul {
    padding-left: 18px;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.split-img {
    min-height: 470px;
    border-radius: 36px;
    background: var(--img) center/cover;
    box-shadow: var(--shadow);
}

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

.fact {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
}

.fact b {
    font-family: Georgia,serif;
    font-size: 34px;
    font-weight: 400;
    color: var(--green);
}

.fact span {
    display: block;
    color: #687067;
    font-size: 14px;
}

.booking {
    padding: 120px 0;
}

.booking-box {
    background: #394d42;
    color: white;
    border-radius: 40px;
    padding: 58px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow);
}

.booking-box p {
    color: #dcd6cc;
    margin: 0;
}

.booking-box h2 {
    margin-bottom: 12px;
}

.booking-box .btn.alt {
    border-color: rgba(255,255,255,.45);
    color: #fff;
}

.booking-box .btn.alt:hover {
    background: rgba(255,255,255,.09);
}

.form {
    display: grid;
    gap: 14px;
}

.form input,.form textarea,.form select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fffdf8;
    font: inherit;
}

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

footer {
    background: #2f3533;
    color: #efece4;
    padding: 76px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4,1fr);
    gap: 38px;
}

.footer-brand {
    font-family: Georgia,serif;
    font-size: 34px;
    letter-spacing: .08em;
    text-transform: uppercase;
}



.footer-brand img {
    opacity: 0.7;      /* 30 % Sichtbarkeit (= 70 % transparent) */
    max-width: 200px;  /* maximale Breite */
    width: 100%;       /* skaliert innerhalb des Containers */
    height: auto;      /* Seitenverhältnis beibehalten */
}

.footer-text {
    color: #c7c0b4;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #c6b39a;
    margin: 0 0 18px;
}

.footer-col a {
    display: block;
    color: #d8d2c8;
    margin: 10px 0;
    font-size: 14px;
}

.footer-col a:hover {
    color: white;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s var(--ease);
}

.socials a:hover {
    background: rgba(255,255,255,.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 54px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #bfb7aa;
    font-size: 13px;
}

.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--soft);
    opacity: 0;
    pointer-events: none;
    transition: .35s var(--ease);
    z-index: 30;
}

.to-top.show {
    opacity: 1;
    pointer-events: auto;
}

@media(max-width:980px) {
    .links,.nav-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        height: 76px;
    }

    .hero,.page-hero {
        padding-top: 142px;
    }

    .hero-grid,.section-title,.reviews-head,.blog-grid,.booking-box,.content-grid,.split {
        grid-template-columns: 1fr;
    }

    .photo-card {
        min-height: 520px;
    }

    .cards,.exp-grid,.reviews-grid,.facts {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .lightbox-prev {
        left: 14px;
    }

    .lightbox-next {
        right: 14px;
    }

    .lightbox-close {
        right: 10px;
        top: 10px;
        background: rgba(0,0,0,.35);
    }

}

@media(max-width:640px) {
    .wrap {
        width: min(100% - 28px,1180px);
    }

    .brand img {
        max-height: 70px;
        padding: 2px;
        width: auto;
    }

    .wordmark b {
        font-size: 24px;
    }

    .wordmark span {
        display: none;
    }

    .mark {
        width: 48px;
    }

    .hero,.page-hero {
        padding-bottom: 72px;
    }

    section {
        padding: 82px 0;
    }

    h1 {
        font-size: 48px;
    }

    .lead {
        font-size: 17px;
    }

    .photo-card {
        min-height: 470px;
        border-radius: 28px;
    }

    .floating {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .cards,.exp-grid,.reviews-grid,.facts {
        grid-template-columns: 1fr;
    }

    .house-img {
        height: 270px;
    }

    .house-body,.reviews-panel,.booking-box {
        padding: 30px;
    }

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

    .footer-top,.footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
    }

    .blog-cta {
        display: block;
    }

    .lightbox {
        padding: 14px;
    }

    .lightbox-info {
        position: static;
        border-radius: 0;
    }

    .lightbox-count {
        left: 12px;
        top: 12px;
    }

    .section-title {
        gap: 20px;
        margin-bottom: 40px;
    }

}