:root {
  --forest: #183f33;
  --forest-2: #245848;
  --forest-soft: #e7f0e9;
  --ink: #17211d;
  --muted: #617069;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --amber: #cf741c;
  --amber-dark: #a9560e;
  --line: #ded8ca;
  --white: #fff;
  --shadow: 0 20px 60px rgba(24, 63, 51, .12);
  --shadow-sm: 0 8px 28px rgba(24, 63, 51, .09);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(207, 116, 28, .4);
  outline-offset: 3px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 14px; border-radius: 9px; background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); }
.skip-link:focus { transform: translateY(0); }
.catalog-container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.catalog-header { position: sticky; z-index: 100; top: 0; background: rgba(255, 253, 248, .91); border-bottom: 1px solid rgba(222, 216, 202, .8); backdrop-filter: blur(18px); }
.header-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.catalog-brand { display: inline-flex; align-items: center; gap: 11px; color: var(--forest); }
.catalog-brand > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.catalog-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 25px; letter-spacing: -.02em; }
.catalog-brand small { margin-top: 5px; color: var(--muted); font-size: 11px; letter-spacing: .03em; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: var(--forest); color: var(--cream); }
.brand-mark svg { width: 27px; }
.catalog-nav { display: flex; align-items: center; gap: 8px; }
.catalog-nav a { padding: 10px 13px; border-radius: 10px; color: #34443d; font-size: 14px; font-weight: 650; }
.catalog-nav a:hover { background: var(--forest-soft); color: var(--forest); }
.catalog-nav a:last-child { margin-left: 8px; padding-inline: 18px; color: var(--white); background: var(--forest); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--forest-soft); }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--forest); border-radius: 9px; }

h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 20px; }
.eyebrow { margin: 0 0 15px; color: var(--amber-dark); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.catalog-hero { position: relative; overflow: hidden; padding: 70px 0 78px; background: var(--cream); }
.catalog-hero::before { content: ""; position: absolute; width: 600px; height: 600px; right: -160px; top: -300px; border-radius: 50%; background: radial-gradient(circle, rgba(207,116,28,.16), rgba(207,116,28,0) 68%); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.14fr .86fr; align-items: center; gap: 70px; }
.hero-lead { max-width: 680px; margin: 25px 0 31px; color: #53625b; font-size: 19px; }
.catalog-search { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(250px, 1.45fr) minmax(170px, .75fr) auto; align-items: end; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.search-field label { display: block; margin: 0 0 5px 5px; color: var(--muted); font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.search-input-wrap { position: relative; }
.search-input-wrap svg { position: absolute; top: 14px; left: 14px; width: 19px; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.search-field input, .search-field select { width: 100%; height: 48px; border: 1px solid #d8d9d3; border-radius: 12px; color: var(--ink); background: #fff; }
.search-field input { padding: 0 14px 0 44px; }
.search-field select { padding: 0 34px 0 13px; cursor: pointer; }
.primary-button, .secondary-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.primary-button { border: 0; color: var(--white); background: var(--amber); box-shadow: 0 8px 18px rgba(207, 116, 28, .2); }
.primary-button:hover { background: var(--amber-dark); transform: translateY(-1px); }
.secondary-button { border-color: rgba(24,63,51,.2); color: var(--forest); background: var(--white); }
.secondary-button:hover { background: var(--forest-soft); transform: translateY(-1px); }
.full { width: 100%; }
.search-note { margin: 14px 3px 0; color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; min-height: 520px; }
.hero-visual img { width: 100%; height: 520px; object-fit: cover; border-radius: 48% 48% 22px 22px; box-shadow: var(--shadow); }
.hero-fact { position: absolute; right: -18px; bottom: 28px; width: min(330px, 88%); padding: 18px 20px; border: 1px solid rgba(255,255,255,.65); border-radius: 17px; color: var(--white); background: rgba(24,63,51,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.hero-fact strong, .hero-fact span { display: block; }
.hero-fact span { margin-top: 3px; color: #dce9e1; font-size: 13px; }

.quick-links { padding: 28px 0; border-bottom: 1px solid var(--line); background: var(--white); }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.quick-grid a { min-height: 92px; display: grid; grid-template-columns: 45px 1fr; grid-template-rows: 1fr 1fr; align-items: end; column-gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.quick-grid a:hover { border-color: #9fb8a9; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.quick-grid a > span { grid-row: 1 / 3; width: 45px; height: 45px; display: grid; place-items: center; align-self: center; border-radius: 14px; color: var(--forest); background: var(--forest-soft); font-size: 22px; }
.quick-grid strong { font-size: 14px; }
.quick-grid small { align-self: start; color: var(--muted); font-size: 11px; }

.catalog-section { padding: 86px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 31px; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 14px; }
.places-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.places-grid:has(.place-card:only-child) { grid-template-columns: minmax(0, 820px); }
.place-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 4px 0 rgba(24,63,51,.02); transition: transform .22s ease, box-shadow .22s ease; }
.place-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.place-card[hidden] { display: none; }
.place-image { position: relative; display: block; height: 360px; overflow: hidden; background: #dfe8df; }
.place-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.place-card:hover .place-image img { transform: scale(1.025); }
.verified-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 999px; color: var(--forest); background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 800; }
.verified-badge svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.place-body { padding: 25px; }
.place-location { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 12px; }
.place-title-row { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-top: 8px; }
.place-title-row h2 { font-size: 31px; }
.place-title-row h2 a:hover { color: var(--forest-2); }
.place-title-row > span { margin-top: 5px; color: var(--forest); font-size: 12px; font-weight: 750; white-space: nowrap; }
.place-body > p { margin: 14px 0 18px; color: #56655e; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.feature-chips li { padding: 6px 9px; border-radius: 8px; color: #355447; background: var(--forest-soft); font-size: 11px; font-weight: 700; }
.place-price { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 23px; padding-top: 18px; border-top: 1px solid var(--line); }
.place-price > span { color: var(--muted); font-size: 12px; }
.arrow-link { color: var(--forest); font-size: 13px; font-weight: 850; white-space: nowrap; }
.empty-state { padding: 54px 20px; border: 1px dashed #9fb8a9; border-radius: var(--radius-lg); text-align: center; background: var(--forest-soft); }
.empty-state > span { font-size: 38px; }
.empty-state h2 { margin-top: 10px; font-size: 28px; }
.empty-state p { color: var(--muted); }
.empty-state button { padding: 10px 16px; border: 1px solid #9fb8a9; border-radius: 10px; color: var(--forest); background: var(--white); font-weight: 800; cursor: pointer; }
.soft-section { background: var(--cream); }
.editorial-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.principles { border-top: 1px solid var(--line); }
.principles article { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.principles article > span { color: var(--amber-dark); font-family: Georgia, serif; font-size: 18px; }
.principles h3 { margin-bottom: 7px; }
.principles p { margin: 0; color: var(--muted); }
.owner-section { padding-top: 0; }
.owner-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 45px; border-radius: var(--radius-xl); color: var(--white); background: var(--forest); }
.owner-card h2 { max-width: 760px; color: var(--white); }
.owner-card p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; color: #dce9e1; }
.owner-card .eyebrow { color: #f0b16f; }
.owner-card .secondary-button { flex: 0 0 auto; }

.collection-hero { padding: 62px 0 48px; border-bottom: 1px solid var(--line); background: var(--cream); }
.narrow-copy { max-width: 940px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--forest); text-decoration: underline; }
.collection-hero h1 { max-width: 900px; font-size: clamp(40px, 6vw, 68px); }
.collection-hero .narrow-copy > p:not(.eyebrow) { max-width: 800px; margin: 22px 0; color: #53625b; font-size: 18px; }
.collection-meta { display: flex; gap: 14px; margin-top: 26px; color: var(--muted); font-size: 12px; }
.collection-meta strong { color: var(--forest); }
.collection-results { padding-top: 56px; }
.guide-card { max-width: 850px; }
.guide-card > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.related-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.related-links a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); background: var(--white); font-size: 13px; font-weight: 750; }
.related-links a:hover { border-color: var(--forest); }

.object-top { padding: 40px 0 0; background: var(--cream); }
.object-title-row { display: flex; align-items: end; justify-content: space-between; gap: 45px; }
.object-title-row h1 { font-size: clamp(42px, 6vw, 72px); }
.object-location { margin: 13px 0 0; color: var(--muted); }
.verified-panel { min-width: 230px; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid #bed0c4; border-radius: 14px; color: var(--forest); background: var(--white); }
.verified-panel svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.verified-panel strong, .verified-panel span { display: block; }
.verified-panel strong { font-size: 13px; }
.verified-panel span { color: var(--muted); font-size: 11px; }
.object-gallery { display: grid; grid-template-columns: 1.55fr .8fr; grid-template-rows: 230px 230px; gap: 10px; margin-top: 37px; }
.object-gallery img { width: 100%; height: 100%; object-fit: cover; }
.object-gallery img:first-child { grid-row: 1 / 3; border-radius: 24px 0 0 24px; }
.object-gallery img:nth-child(2) { border-radius: 0 24px 0 0; }
.object-gallery img:nth-child(3) { border-radius: 0 0 24px 0; }
.object-content { padding-top: 65px; }
.object-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 72px; }
.object-main > section { padding: 0 0 55px; margin-bottom: 55px; border-bottom: 1px solid var(--line); }
.object-main > section:last-child { border: 0; margin-bottom: 0; }
.large-copy { max-width: 790px; margin-top: 22px; color: #526159; font-size: 19px; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.amenities-list li { display: flex; align-items: center; gap: 11px; padding: 14px; border-radius: 12px; background: var(--cream); font-weight: 700; }
.amenities-list svg { width: 19px; fill: none; stroke: var(--forest); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.facts-block { padding: 34px !important; border: 1px solid #bed0c4 !important; border-radius: 22px; background: var(--forest-soft); }
.facts-block ul { margin: 24px 0 0; padding-left: 22px; }
.facts-block li { margin: 10px 0; }
.source-note { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid #bed0c4; color: var(--muted); font-size: 12px; }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 25px; }
.fit-grid article { padding: 20px; border: 1px solid var(--line); border-radius: 15px; }
.fit-grid article > span { color: var(--amber-dark); font-size: 24px; }
.fit-grid h3 { margin-top: 12px; }
.fit-grid p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.faq-list { margin-top: 25px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 3px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--forest); font-size: 24px; font-weight: 400; transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 35px 21px 3px; color: var(--muted); }
.booking-panel { position: sticky; top: 105px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.booking-panel h2 { font-size: 31px; }
.booking-panel > p:not(.eyebrow, .panel-note) { color: var(--muted); }
.booking-panel > a { margin-top: 9px; }
.contact-list { margin-top: 22px; border-top: 1px solid var(--line); }
.contact-list a { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.contact-list strong { margin-top: 3px; color: var(--forest); font-size: 13px; }
.panel-note { margin: 17px 0 0; color: var(--muted); font-size: 11px; }

.catalog-footer { padding: 60px 0 20px; color: #dce9e1; background: #102d25; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 45px; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark { color: var(--forest); background: var(--cream); }
.footer-grid > div:first-child > p { max-width: 380px; color: #9eb8ac; font-size: 13px; }
.footer-grid h2 { margin-bottom: 16px; color: #f7f3e9; font-family: inherit; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin: 5px 0; color: #b8ccc2; font-size: 13px; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #8ea99d; font-size: 11px; }

@media (max-width: 980px) {
  .catalog-nav { position: absolute; top: 70px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow); }
  .catalog-nav.open { display: flex; }
  .catalog-nav a:last-child { margin-left: 0; text-align: center; }
  .nav-toggle { display: block; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual { min-height: 420px; }
  .hero-visual img { height: 420px; border-radius: 24px; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .editorial-grid { grid-template-columns: 1fr; gap: 35px; }
  .owner-card { align-items: flex-start; flex-direction: column; }
  .object-layout { grid-template-columns: 1fr; }
  .booking-panel { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  .catalog-container { width: min(calc(100% - 28px), var(--container)); }
  .catalog-brand small { display: none; }
  .catalog-hero { padding: 45px 0 50px; }
  h1 { font-size: 43px; }
  .hero-lead { font-size: 17px; }
  .catalog-search { grid-template-columns: 1fr; padding: 12px; }
  .catalog-search .primary-button { width: 100%; }
  .hero-visual { min-height: 320px; }
  .hero-visual img { height: 320px; }
  .hero-fact { right: 10px; bottom: 13px; }
  .quick-grid { grid-template-columns: 1fr; }
  .places-grid, .places-grid:has(.place-card:only-child) { grid-template-columns: 1fr; }
  .place-image { height: 260px; }
  .place-title-row { flex-direction: column; gap: 3px; }
  .place-title-row > span { white-space: normal; }
  .place-price { align-items: flex-start; flex-direction: column; }
  .catalog-section { padding: 62px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .owner-card { padding: 30px 22px; }
  .object-title-row { align-items: flex-start; flex-direction: column; }
  .verified-panel { width: 100%; }
  .object-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 130px; }
  .object-gallery img:first-child { grid-column: 1 / 3; grid-row: auto; border-radius: 18px 18px 0 0; }
  .object-gallery img:nth-child(2) { border-radius: 0 0 0 18px; }
  .object-gallery img:nth-child(3) { border-radius: 0 0 18px 0; }
  .object-layout { gap: 45px; }
  .amenities-list, .fit-grid { grid-template-columns: 1fr; }
  .facts-block { padding: 24px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / 3; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
