:root {
  --background: #faf6f0;
  --primary: #b76a3b;
  --text: #2c241f;
  --secondary: #e8d8c8;
  --white: #ffffff;
  --ink-soft: #6f6258;
  --olive: #67705b;
  --line: rgba(44, 36, 31, 0.13);
  --shadow: 0 18px 48px rgba(44, 36, 31, 0.12);
  font-family: Montserrat, Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--background);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), transparent 520px),
    var(--background);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--text);
  color: var(--white);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(44, 36, 31, 0.08);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 120px;
  height: 66px;
  object-fit: contain;
}

.site-nav,
.header-actions,
.hero-actions,
.card-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.language {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(183, 106, 59, 0.22);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(44, 36, 31, 0.2);
}

.button-ghost {
  border-color: rgba(183, 106, 59, 0.42);
  color: var(--primary);
  background: transparent;
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  min-height: calc(100vh - 86px);
  align-items: stretch;
  background: #4a3329;
  color: var(--white);
}

.hero-copy {
  align-self: center;
  padding: clamp(44px, 8vw, 104px) clamp(22px, 6vw, 76px);
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  line-height: 1.72;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #f1d2bd;
  text-transform: none;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-media {
  min-height: 480px;
}

.photo-placeholder {
  position: relative;
  min-height: 280px;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(44, 36, 31, 0.16), rgba(255, 255, 255, 0.1)),
    linear-gradient(145deg, #c98655, #f2d8bf 42%, #7d604b);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 3px;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 24%;
  height: 28%;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.hero-tone {
  border-radius: 0;
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(44, 36, 31, 0.45), transparent 52%),
    linear-gradient(145deg, #a86d42, #edc5a2 46%, #fff7ed);
}

.rome-tone {
  background:
    linear-gradient(135deg, rgba(44, 36, 31, 0.1), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, #d19c5d, #f7d08d 45%, #747b67);
}

.room {
  background:
    linear-gradient(135deg, rgba(44, 36, 31, 0.12), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, #d0b49b, #f7e5d0 46%, #9b7a5f);
}

.house {
  background:
    linear-gradient(135deg, rgba(44, 36, 31, 0.12), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, #bd7d4f, #efd6c2 42%, #6d5b47);
}

.tiburtina {
  background:
    linear-gradient(135deg, rgba(44, 36, 31, 0.12), rgba(255, 255, 255, 0.12)),
    linear-gradient(145deg, #7c806b, #ead4bf 42%, #b76a3b);
}

.photo-placeholder span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(44, 36, 31, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: -44px auto 0;
}

.booking-bar {
  display: grid;
  grid-template-columns: 1.15fr repeat(5, minmax(104px, 0.74fr)) auto;
  gap: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-bar label,
.filters label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-bar label {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.booking-bar input,
.booking-bar select,
.filters select {
  width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fbf8f4;
  color: var(--text);
  padding: 9px 10px;
}

.booking-bar .button {
  border-radius: 0;
  min-height: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 18px 16px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.booking-note {
  color: var(--primary);
  font-weight: 800;
}

.booking-state {
  padding-top: 24px;
  padding-bottom: 0;
}

.booking-state-card {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(183, 106, 59, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.booking-state-card p {
  display: inline-block;
  margin: 4px 18px 4px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-state-card .eyebrow {
  display: block;
}

.booking-state-card strong {
  color: var(--text);
}

.booking-state-alert,
.booking-state-card .booking-state-alert {
  display: block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
}

.booking-state-note {
  display: block !important;
  margin-top: 10px !important;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 6vw, 76px);
}

.intro-grid,
.two-column,
.rome-band,
.property-hero,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.property-card,
.content-card,
.detail-grid article,
blockquote {
  background: var(--white);
  border: 1px solid rgba(44, 36, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(44, 36, 31, 0.07);
}

.property-card {
  overflow: hidden;
}

.property-card .photo-placeholder {
  min-height: 210px;
  border-radius: 0;
}

.property-card-body {
  padding: 22px;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 8px;
}

.mini-list li {
  padding-left: 20px;
  position: relative;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
}

.price-note,
.da {
  color: var(--primary);
  font-weight: 800;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.rome-band {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 6vw, 76px);
  background: #efe4d7;
}

.rome-band .photo-placeholder {
  min-height: 390px;
}

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

.benefits article {
  padding: 18px;
  border-left: 1px solid var(--line);
}

.benefits span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(183, 106, 59, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, transparent 8px, rgba(183, 106, 59, 0.16) 9px);
}

details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

blockquote {
  margin: 24px 0 0;
  padding: 24px;
}

blockquote footer {
  color: var(--primary);
  font-weight: 800;
}

.page-hero,
.property-hero {
  padding: clamp(58px, 9vw, 116px) clamp(18px, 6vw, 76px);
}

.compact {
  max-width: 980px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 0;
  padding-bottom: 18px;
}

.detail-grid {
  align-items: stretch;
}

.detail-grid article,
.content-card {
  padding: 26px;
}

dl {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--ink-soft);
}

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

.narrow {
  max-width: 860px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background: #f7efe7;
}

.footer-logo {
  width: 112px;
  height: 58px;
  object-fit: contain;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

*:focus-visible {
  outline: 3px solid rgba(103, 112, 91, 0.6);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .site-nav a,
  .property-card {
    transition: transform 160ms ease, color 160ms ease, box-shadow 160ms ease;
  }

  .property-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
}

@media (max-width: 1180px) {
  .booking-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .booking-bar .button {
    min-height: 58px;
  }

  .property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 100px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    align-items: stretch;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .hero,
  .intro-grid,
  .two-column,
  .rome-band,
  .property-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 330px;
    order: -1;
  }

  .booking-wrap {
    margin-top: 18px;
  }

  .booking-bar,
  .filters,
  .benefits,
  .gallery-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .booking-bar label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

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

  .hero-copy,
  .section,
  .page-hero,
  .property-hero,
  .rome-band {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .button {
    width: 100%;
  }

  dl {
    grid-template-columns: 1fr;
  }
}

/* Homepage redesign following the supplied photographic reference. */
.site-header {
  min-height: 74px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand img {
  width: 108px;
  height: 54px;
}

.site-nav a,
.language {
  font-size: 0.78rem;
}

.header-actions .button {
  min-height: 42px;
  padding-inline: 20px;
}

.home-hero {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #6d4936;
}

.home-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  transform: scale(1.35);
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 29, 22, 0.78) 0%, rgba(44, 29, 22, 0.52) 34%, rgba(44, 29, 22, 0.08) 70%),
    linear-gradient(180deg, rgba(44, 29, 22, 0.08), rgba(44, 29, 22, 0.2));
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 40px));
  margin-left: clamp(24px, 5vw, 76px);
  padding-bottom: 58px;
}

.home-hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
}

.home-hero h1 {
  max-width: 560px;
  font-size: clamp(2.7rem, 4.4vw, 4.65rem);
  line-height: 1.02;
}

.home-hero p {
  max-width: 460px;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-booking-wrap {
  width: min(1160px, calc(100% - 72px));
  margin-top: -48px;
}

.home-booking-wrap .booking-bar {
  grid-template-columns: minmax(170px, 1.15fr) repeat(5, minmax(104px, 0.72fr)) minmax(178px, 0.9fr);
  border-radius: 8px;
}

.home-booking-wrap .booking-bar label {
  padding: 15px 17px;
}

.home-booking-wrap .booking-bar input,
.home-booking-wrap .booking-bar select {
  min-height: 36px;
  padding: 6px 0;
  border: 0;
  background: transparent;
  font-size: 0.92rem;
}

.home-booking-wrap .form-note {
  display: none;
}

.home-properties-section {
  padding-top: 82px;
  padding-bottom: 44px;
}

.home-properties-section .section-heading {
  margin-bottom: 22px;
}

.home-properties-section h2,
.home-rome h2,
.home-final h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-card {
  overflow: hidden;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(44, 36, 31, 0.09);
}

.home-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-card-body {
  padding: 18px 18px 20px;
}

.home-card-body .eyebrow {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

.home-card-body h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.home-card-body p {
  min-height: 76px;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-rome {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 0;
  align-items: stretch;
  margin-top: 12px;
  background: #eee4da;
}

.home-rome > div {
  padding: clamp(36px, 5vw, 66px) clamp(22px, 5vw, 72px);
  align-self: center;
}

.home-rome p {
  max-width: 390px;
}

.home-rome img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 22px clamp(18px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  background: #fbf7f1;
}

.home-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  min-width: 0;
  padding: 12px 16px;
  border-left: 1px solid var(--line);
}

.home-benefits article:first-child {
  border-left: 0;
}

.home-benefits svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1px solid rgba(183, 106, 59, 0.42);
  border-radius: 50%;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-benefits h3 {
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
}

.home-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.home-reviews {
  padding-top: 52px;
  padding-bottom: 28px;
}

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

.review-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(183, 106, 59, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(44, 36, 31, 0.06);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.review-card p {
  margin: 0;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.65;
}

.review-card footer {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-final {
  padding-top: 44px;
  padding-bottom: 54px;
}

@media (max-width: 1180px) {
  .home-booking-wrap .booking-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-card-grid,
  .review-grid,
  .home-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-benefits article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 70px;
  }

  .home-hero {
    min-height: 510px;
  }

  .home-hero-overlay {
    background:
      linear-gradient(90deg, rgba(44, 29, 22, 0.78), rgba(44, 29, 22, 0.22)),
      linear-gradient(180deg, rgba(44, 29, 22, 0.15), rgba(44, 29, 22, 0.45));
  }

  .home-hero-copy {
    margin-left: 22px;
    padding-bottom: 34px;
  }

  .home-booking-wrap {
    width: min(620px, calc(100% - 28px));
    margin-top: 14px;
  }

  .home-booking-wrap .booking-bar {
    grid-template-columns: 1fr 1fr;
  }

  .home-booking-wrap .booking-bar .button {
    grid-column: 1 / -1;
    min-height: 52px;
  }

  .home-card-grid,
  .review-grid,
  .home-rome {
    grid-template-columns: 1fr;
  }

  .home-benefits {
    grid-template-columns: 1fr;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .home-benefits article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .home-benefits article:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .home-hero {
    min-height: 470px;
  }

  .home-hero-photo {
    object-position: 55% center;
  }

  .home-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.05rem);
  }

  .home-hero p {
    font-size: 0.92rem;
  }

  .home-booking-wrap .booking-bar {
    grid-template-columns: 1fr;
  }

  .home-properties-section {
    padding-top: 58px;
    padding-bottom: 32px;
  }

  .home-card-body p {
    min-height: 0;
  }
}

/* Final homepage polish: premium header, floating booking, refined footer. */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: 78px;
  background: rgba(250, 246, 240, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  min-height: 72px;
  background: rgba(250, 246, 240, 0.96);
  border-bottom-color: rgba(44, 36, 31, 0.08);
  box-shadow: 0 10px 26px rgba(44, 36, 31, 0.08);
}

.brand img {
  width: 124px;
  height: 58px;
  filter: drop-shadow(0 8px 18px rgba(44, 36, 31, 0.14));
}

.site-nav {
  gap: clamp(18px, 2.6vw, 34px);
}

.site-nav a,
.language {
  position: relative;
  font-size: 0.76rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions .button {
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(183, 106, 59, 0.25);
}

.home-hero {
  min-height: 660px;
  padding-top: 78px;
}

.home-hero-photo {
  object-position: 20% center;
  filter: saturate(1.02) contrast(1.03);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 25, 18, 0.62) 0%, rgba(38, 25, 18, 0.34) 36%, rgba(38, 25, 18, 0.02) 72%),
    linear-gradient(180deg, rgba(38, 25, 18, 0.08), rgba(38, 25, 18, 0.04) 50%, rgba(38, 25, 18, 0.14));
}

.home-hero-copy {
  padding-bottom: 84px;
}

.home-hero h1 {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.home-booking-wrap {
  margin-top: -58px;
}

.home-booking-wrap .booking-bar {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 55px rgba(44, 36, 31, 0.17);
}

.booking-bar label > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7f7065;
}

.booking-bar label > span svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-booking-wrap .booking-bar label {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 240, 0.5));
}

.home-booking-wrap .booking-bar input,
.home-booking-wrap .booking-bar select {
  color: var(--text);
  font-weight: 800;
}

.home-booking-wrap .booking-bar input:focus,
.home-booking-wrap .booking-bar select:focus {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--primary);
}

.home-booking-wrap .booking-bar .button {
  border-radius: 0 10px 10px 0;
  font-size: 0.86rem;
  box-shadow: none;
}

.home-card {
  border: 1px solid rgba(44, 36, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(44, 36, 31, 0.12);
}

.home-card img {
  transition: transform 260ms ease;
}

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

.home-card-body h3 {
  color: #261f1b;
}

.site-footer {
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(22px, 4vw, 56px);
  padding-top: 42px;
  padding-bottom: 38px;
  background:
    linear-gradient(180deg, #f7efe7, #f1e5d8);
}

.site-footer h3 {
  margin-bottom: 14px;
  font-family: Montserrat, Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-brand p,
.site-footer p,
.site-footer a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 12px;
}

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

.social-links {
  display: flex;
  gap: 10px;
  margin: 4px 0 18px;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 106, 59, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -3px;
}

.footer-copy {
  margin-top: 12px;
}

.smoobu-booking-section {
  padding-top: 28px;
}

.smoobu-booking-section.home-booking-wrap {
  padding: 0;
}

.smoobu-booking-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(44, 36, 31, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(44, 36, 31, 0.1);
}

.smoobu-sameday-note {
  margin: 0;
  padding: 8px 18px 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.smoobu-status {
  margin: 0;
  padding: 10px 18px 18px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  text-align: center;
}

.smoobu-booking-unavailable #apartmentIframeAll {
  min-height: 0;
}

.smoobu-booking-unavailable #apartmentIframeAll iframe {
  min-height: 0;
  height: 1px;
}

.home-smoobu-booking .smoobu-booking-shell {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 55px rgba(44, 36, 31, 0.17);
}

#apartmentIframeAll {
  width: 100%;
  min-height: 185px;
  overflow: hidden;
}

#apartmentIframeAll iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 185px;
  border: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .home-hero-copy {
    animation: heroRise 520ms ease both;
  }

  .home-booking-wrap {
    animation: bookingFloat 520ms ease 120ms both;
  }
}

@keyframes heroRise {
  from {
    opacity: 0.96;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bookingFloat {
  from {
    opacity: 0.96;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    background: rgba(250, 246, 240, 0.96);
  }

  .brand img {
    width: 112px;
    height: 56px;
  }

  .home-hero {
    min-height: 540px;
    padding-top: 0;
  }

  .home-hero-copy {
    padding-bottom: 34px;
  }

  .home-booking-wrap {
    margin-top: 16px;
  }

  .home-booking-wrap .booking-bar label {
    padding: 16px 18px;
  }

  .home-booking-wrap .booking-bar .button {
    border-radius: 0 0 10px 10px;
  }

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

  .smoobu-booking-section {
    padding-top: 16px;
  }

  .smoobu-booking-shell {
    width: min(100% - 24px, 1160px);
  }

  #apartmentIframeAll,
  #apartmentIframeAll iframe {
    min-height: 255px;
  }
}

/* Internal pages: shared quality without changing the approved homepage. */
.internal-hero {
  padding-top: 126px;
  background:
    linear-gradient(135deg, rgba(250, 246, 240, 0.95), rgba(232, 216, 200, 0.45)),
    var(--background);
}

.internal-hero h1 {
  max-width: 850px;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
}

.internal-hero p {
  max-width: 720px;
  color: var(--ink-soft);
}

.internal-photo,
.gallery-photo {
  display: block;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(44, 36, 31, 0.12);
}

.internal-photo {
  aspect-ratio: 4 / 3;
}

.gallery-photo {
  aspect-ratio: 4 / 3;
}

.internal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.internal-grid .content-card h2,
.detail-grid h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.internal-grid .content-card p {
  margin: 0;
  color: var(--ink-soft);
}

.filters {
  align-items: end;
}

.filters label {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

@media (max-width: 860px) {
  .internal-hero {
    padding-top: 52px;
  }
}
