:root {
  --forest: #174a3c;
  --forest-dark: #0e352c;
  --coral: #e9624d;
  --sun: #efb84c;
  --cream: #fbf5e9;
  --paper: #fffdf8;
  --ink: #20342f;
  --muted: #68776e;
  --line: rgba(32, 52, 47, .15);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p { line-height: 1.7; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 12px; top: 10px; background: var(--forest); color: white; padding: 10px 14px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.site-header.internal-header {
  position: relative;
  max-width: none;
  padding-left: max(28px, calc((100vw - 1180px)/2));
  padding-right: max(28px, calc((100vw - 1180px)/2));
  background: var(--forest-dark);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 16px; }
.brand svg { width: 40px; height: 40px; fill: var(--sun); stroke: var(--forest-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.brand span { font-family: var(--serif); font-size: 21px; }
.brand strong { font-weight: 400; color: var(--sun); }
.site-header nav, footer nav { display: flex; gap: 28px; font-size: 13px; font-weight: 600; }
.site-header nav a { padding: 8px 0; border-bottom: 1px solid transparent; }
.site-header nav a:hover { border-color: var(--sun); }
.site-header nav a[aria-current="page"] { color: var(--sun); border-color: var(--sun); }
.button {
  min-height: 50px;
  padding: 0 23px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--coral);
  color: white;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14,53,44,.2); }
.button-small { min-height: 42px; padding: 0 17px; background: var(--sun); color: var(--forest-dark); }
.button-coral { background: var(--coral); }
.button-glass { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.7); backdrop-filter: blur(7px); }
.button-white { background: white; color: var(--forest-dark); }
.button-outline-white { background: transparent; border: 1px solid rgba(255,255,255,.65); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.menu-toggle { display: none; background: white; color: var(--forest); border: 0; border-radius: 8px; width: 43px; height: 43px; padding: 10px; }
.menu-toggle i { display: block; width: 21px; height: 2px; background: currentColor; margin: 4px 0; }

.hero { min-height: min(820px, 100vh); position: relative; display: grid; align-items: center; overflow: hidden; color: white; }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(8,35,29,.8) 0%, rgba(8,35,29,.45) 48%, rgba(8,35,29,.1) 78%), linear-gradient(0deg, rgba(8,35,29,.45), transparent 35%); }
.hero-content { position: relative; z-index: 2; width: min(1180px, calc(100% - 56px)); margin: 70px auto 0; }
.eyebrow { margin: 0 0 17px; color: var(--coral); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow.light { color: #ffd67d; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; }
h1 { max-width: 760px; font-size: clamp(57px, 7.5vw, 98px); line-height: .92; }
h1 em { color: #ffd67d; font-weight: 400; }
.hero-content > p:not(.eyebrow) { max-width: 560px; font-size: 17px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.hero-facts {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - 1180px)/2));
  bottom: 35px;
  display: flex;
  background: var(--paper);
  color: var(--muted);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(14,53,44,.22);
}
.hero-facts span { min-width: 130px; padding: 18px 24px; border-right: 1px solid var(--line); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.hero-facts span:last-child { border: 0; }
.hero-facts strong { display: block; color: var(--forest); font-family: var(--serif); font-size: 20px; font-weight: 400; text-transform: none; letter-spacing: 0; }

.section { max-width: 1180px; margin: auto; padding: 108px 28px; scroll-margin-top: 70px; }
.section-heading h2, .section-top h2, .experience-banner h2, .location h2, .contact-card h2 { font-size: clamp(43px, 5vw, 67px); line-height: 1.02; color: var(--forest-dark); }
.welcome { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.welcome-copy .lead { margin: 0 0 23px; font-family: var(--serif); font-size: 26px; line-height: 1.45; color: var(--forest); }
.welcome-copy > p:not(.lead) { color: var(--muted); font-size: 14px; }
.welcome-points { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.welcome-points span { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; }
.welcome-points svg { width: 23px; height: 23px; fill: none; stroke: var(--coral); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.rooms { max-width: none; background: var(--cream); padding-left: max(28px, calc((100vw - 1124px)/2)); padding-right: max(28px, calc((100vw - 1124px)/2)); }
.section-top { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 45px; }
.section-top > p { max-width: 420px; color: var(--muted); font-size: 14px; margin: 0 0 4px; }
.room-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.room-card { background: var(--paper); border: 1px solid transparent; border-radius: 10px; overflow: hidden; box-shadow: 0 14px 45px rgba(32,52,47,.08); }
.room-card-featured {
  border: 2px solid var(--sun);
  background: #fff8df;
  box-shadow: 0 24px 54px rgba(32,52,47,.17), 0 0 0 4px rgba(239,184,76,.13);
  transform: translateY(-8px);
}
.room-image { position: relative; height: 250px; overflow: hidden; }
.room-card-featured .room-image { height: 250px; }
.room-image img { height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-image img { transform: scale(1.04); }
.room-image-crop img { object-position: 20% center; }
.room-image-breakfast img { object-position: center; }
.room-image > span { position: absolute; left: 14px; top: 14px; padding: 7px 11px; border-radius: 20px; background: var(--sun); color: var(--forest-dark); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.room-card-featured .room-image > span {
  padding: 8px 14px;
  background: var(--coral);
  color: white;
  box-shadow: 0 8px 20px rgba(14,53,44,.18);
}
.room-card-featured .room-content { background: linear-gradient(180deg, #fffaf0, #fff8df); }
.room-content { padding: 24px; }
.room-content > div:first-child { display: flex; flex-direction: column-reverse; }
.room-content h3 { margin: 4px 0 0; font-family: var(--serif); color: var(--forest-dark); font-size: 27px; font-weight: 400; }
.room-content > div p { margin: 0; color: var(--coral); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.room-content > p { color: var(--muted); font-size: 12px; min-height: 44px; }
.room-content ul { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; padding: 14px 0; margin: 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.room-content li::before { content: "•"; color: var(--coral); margin-right: 7px; }
.room-content > a { display: flex; justify-content: space-between; color: var(--forest); font-size: 12px; font-weight: 700; padding-top: 12px; }

.experience-banner {
  background: var(--forest);
  color: white;
  padding: 100px max(28px, calc((100vw - 1124px)/2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}
.experience-banner h2 { color: white; }
.experience-list article { display: grid; grid-template-columns: 42px 1fr; gap: 20px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.18); }
.experience-list article > span { color: #ffd67d; font-family: var(--serif); font-style: italic; }
.experience-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.experience-list p { margin: 0; color: rgba(255,255,255,.66); font-size: 12px; }

.center { text-align: center; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 240px 240px; gap: 14px; margin-top: 45px; }
.gallery-item { position: relative; border: 0; padding: 0; border-radius: 8px; overflow: hidden; cursor: zoom-in; background: var(--forest); }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .5s, filter .5s; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.88); }
.gallery-item span { position: absolute; left: 15px; bottom: 14px; color: white; font-size: 11px; font-weight: 700; opacity: 0; transform: translateY(5px); transition: .25s; }
.gallery-item:hover span { opacity: 1; transform: none; }
.gallery-wide { grid-row: 1 / 3; }
.gallery-tall { grid-row: 1 / 3; }
.gallery-detail img { object-position: 85% center; }

.location { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.map-card { position: relative; min-height: 480px; overflow: hidden; border-radius: 12px; background: #dbe9cf; box-shadow: 0 18px 50px rgba(32,52,47,.12); }
.map-card::after { content: ""; position: absolute; right: -15%; top: 0; width: 38%; height: 100%; background: #8ed0d4; transform: skew(-9deg); }
.map-road { position: absolute; z-index: 1; height: 9px; border: 2px solid white; background: #ecd29d; border-radius: 10px; transform-origin: left center; }
.road-one { width: 88%; left: -5%; top: 45%; transform: rotate(-13deg); }
.road-two { width: 67%; left: 25%; top: 20%; transform: rotate(57deg); }
.road-three { width: 62%; left: 17%; bottom: 15%; transform: rotate(-48deg); }
.map-water { position: absolute; z-index: 2; right: 12px; top: 50%; color: #347b80; font-family: var(--serif); font-style: italic; transform: rotate(81deg); }
.map-place { position: absolute; z-index: 2; padding: 5px 8px; background: rgba(255,255,255,.75); font-size: 9px; font-weight: 700; border-radius: 4px; }
.place-one { right: 29%; bottom: 15%; }
.place-two { right: 22%; top: 25%; }
.map-pin { position: absolute; z-index: 4; left: 42%; top: 43%; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--forest-dark); font-size: 11px; }
.map-pin svg { width: 45px; height: 45px; fill: var(--coral); stroke: white; stroke-width: 1.5; }
.map-card small { position: absolute; z-index: 4; left: 15px; bottom: 12px; background: rgba(255,255,255,.82); padding: 5px 8px; border-radius: 3px; font-size: 8px; }
.location-copy > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.travel-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.travel-times span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .05em; }
.travel-times strong { display: block; color: var(--forest); font-family: var(--serif); font-size: 21px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.text-button { border: 0; border-bottom: 2px solid var(--coral); padding: 5px 0; background: none; color: var(--forest); font-weight: 700; font-size: 12px; cursor: pointer; }

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  padding: 90px max(28px, calc((100vw - 1124px)/2)) 68px;
}
.page-hero > img, .page-hero::after { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { object-fit: cover; }
.page-hero::after { content: ""; background: linear-gradient(90deg, rgba(8,35,29,.8), rgba(8,35,29,.22)); }
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(52px, 7vw, 82px); }
.page-hero p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.82); }
.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.content-copy .lead { margin-top: 0; font-family: var(--serif); color: var(--forest); font-size: 27px; line-height: 1.45; }
.content-copy p:not(.lead) { color: var(--muted); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.value-card { padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); }
.value-card span { color: var(--coral); font-family: var(--serif); font-size: 25px; }
.value-card h3 { margin: 15px 0 8px; font-family: var(--serif); color: var(--forest); font-size: 22px; font-weight: 400; }
.value-card p { margin: 0; color: var(--muted); font-size: 12px; }
.room-detail { display: grid; grid-template-columns: 1.08fr .92fr; gap: 55px; align-items: center; padding: 55px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 25px; }
.room-detail:nth-child(even) .room-detail-image { order: 2; }
.room-detail-image { min-height: 390px; border-radius: 12px; overflow: hidden; }
.room-detail-image img { height: 100%; min-height: 390px; object-fit: cover; }
.room-detail-copy h2 { font-size: 45px; }
.room-detail-copy > p { color: var(--muted); font-size: 14px; }
.room-detail-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 20px 0; color: var(--muted); font-size: 12px; }
.room-detail-copy li::before { content: "✓"; color: var(--coral); margin-right: 8px; font-weight: 700; }
.price-line { color: var(--coral) !important; font-size: 11px !important; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.page-gallery { margin-top: 0; }
.location-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.location-layout .map-card { min-height: 560px; }
.nearby-list { display: grid; gap: 12px; margin: 28px 0; }
.nearby-list div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.nearby-list span { color: var(--muted); }
.contact-page-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; align-items: start; }
.contact-info { padding: 36px; border-radius: 12px; background: var(--forest); color: white; }
.contact-info h2 { color: white; font-size: 40px; }
.contact-info > p { color: rgba(255,255,255,.7); font-size: 13px; }
.contact-info-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-info-list span { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); font-size: 11px; }
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 35px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 15px 45px rgba(32,52,47,.07); }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--forest); font-size: 11px; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); padding: 11px 13px; color: var(--ink); font: inherit; font-size: 13px; }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 10px; }
.demo-form > .button.full { grid-column: 1 / -1; }

.contact-section { position: relative; min-height: 580px; display: grid; place-items: center; padding: 70px 28px; overflow: hidden; }
.contact-section > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.contact-section::after { content: ""; position: absolute; inset: 0; background: rgba(14,53,44,.6); }
.contact-card { position: relative; z-index: 2; max-width: 650px; padding: 55px; border-radius: 12px; text-align: center; background: rgba(23,74,60,.94); color: white; box-shadow: 0 22px 70px rgba(14,53,44,.3); }
.contact-card h2 { color: white; }
.contact-card > p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 14px; }
.contact-actions { display: flex; justify-content: center; gap: 10px; margin: 26px 0 15px; }
.contact-card small { color: rgba(255,255,255,.55); font-size: 9px; }

footer { padding: 70px max(28px, calc((100vw - 1124px)/2)) 28px; background: var(--cream); text-align: center; }
.footer-brand { color: var(--forest); }
.footer-brand svg { stroke: var(--cream); }
footer > p { color: var(--muted); font-size: 12px; }
footer nav { justify-content: center; margin: 25px 0 50px; color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }

.floating-chat { position: fixed; z-index: 15; right: 22px; bottom: 20px; height: 49px; padding: 0 18px; border: 0; border-radius: 28px; display: flex; align-items: center; gap: 9px; background: #23b867; color: white; box-shadow: 0 12px 30px rgba(14,53,44,.22); cursor: pointer; font-size: 11px; font-weight: 700; }
.floating-chat svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.demo-dialog { width: min(450px, calc(100% - 36px)); border: 0; border-radius: 12px; padding: 42px; background: var(--paper); color: var(--ink); box-shadow: 0 25px 90px rgba(14,53,44,.3); }
.demo-dialog::backdrop, .lightbox::backdrop { background: rgba(8,35,29,.77); backdrop-filter: blur(3px); }
.dialog-close { position: absolute; right: 14px; top: 10px; border: 0; background: none; color: var(--forest); font-size: 28px; cursor: pointer; }
.dialog-icon { display: block; margin-bottom: 18px; color: var(--coral); }
.dialog-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.demo-dialog h2 { font-size: 40px; }
.demo-dialog > p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.demo-dialog strong { color: var(--forest); }
.dialog-button { width: 100%; margin-top: 10px; background: var(--forest); }
.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; border: 0; margin: 0; padding: 58px 28px 28px; background: #102f28; color: white; }
.lightbox img { width: auto; max-width: 100%; height: calc(100vh - 110px); margin: auto; object-fit: contain; }
.lightbox p { text-align: center; margin: 8px 0 0; font-size: 11px; }
.lightbox-close { position: fixed; z-index: 2; right: 20px; top: 14px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,0,0,.2); color: white; font-size: 24px; cursor: pointer; }

@media (max-width: 900px) {
  .site-header nav, .site-header > .button { display: none; }
  .menu-toggle { display: block; }
  .site-header.open nav { position: absolute; display: flex; flex-direction: column; gap: 4px; top: 72px; left: 20px; right: 20px; padding: 18px; border-radius: 10px; background: var(--paper); color: var(--forest); box-shadow: 0 18px 50px rgba(14,53,44,.18); }
  .site-header.open nav a { padding: 10px 12px; }
  .hero-content { margin-top: 30px; }
  .hero-facts { left: 28px; right: auto; }
  .welcome, .experience-banner, .location { grid-template-columns: 1fr; gap: 50px; }
  .content-grid, .location-layout, .contact-page-grid { grid-template-columns: 1fr; gap: 45px; }
  .room-detail { grid-template-columns: 1fr; }
  .room-detail:nth-child(even) .room-detail-image { order: 0; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px; }
  .gallery-wide { grid-row: 1; grid-column: 1 / -1; }
  .gallery-tall { grid-row: 2; }
  .map-card { order: 2; }
}

@media (max-width: 600px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand span { font-size: 18px; }
  .brand svg { width: 35px; height: 35px; }
  .hero { min-height: 760px; align-items: start; }
  .hero-content { width: calc(100% - 40px); margin-top: 145px; }
  h1 { font-size: 54px; }
  .hero-content > p:not(.eyebrow) { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-facts { left: 20px; right: 20px; bottom: 20px; }
  .hero-facts span { flex: 1; min-width: 0; padding: 13px 10px; text-align: center; }
  .hero-facts strong { font-size: 17px; }
  .section { padding: 75px 20px; }
  .page-hero { min-height: 380px; padding: 75px 20px 50px; }
  .values-grid { grid-template-columns: 1fr; }
  .room-detail { gap: 25px; padding: 38px 0; }
  .room-detail-image, .room-detail-image img { min-height: 270px; }
  .room-detail-copy h2 { font-size: 38px; }
  .demo-form { grid-template-columns: 1fr; padding: 25px 20px; }
  .form-field.full { grid-column: auto; }
  .form-note { grid-column: auto; }
  .demo-form > .button.full { grid-column: auto; }
  .section-heading h2, .section-top h2, .experience-banner h2, .location h2, .contact-card h2 { font-size: 43px; }
  .welcome { gap: 35px; }
  .welcome-copy .lead { font-size: 22px; }
  .section-top { display: block; }
  .section-top > p { margin-top: 18px; }
  .rooms { padding-left: 20px; padding-right: 20px; }
  .room-grid { grid-template-columns: 1fr; }
  .room-card-featured { transform: none; }
  .experience-banner { padding: 75px 20px; gap: 35px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 250px); }
  .gallery-item, .gallery-wide, .gallery-tall { grid-column: auto; grid-row: auto; }
  .location { gap: 38px; }
  .map-card { min-height: 390px; }
  .travel-times { gap: 7px; }
  .contact-section { padding: 50px 20px; }
  .contact-card { padding: 42px 23px; }
  .contact-actions { flex-direction: column; }
  footer nav { flex-wrap: wrap; gap: 15px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-chat { width: 49px; padding: 0; justify-content: center; }
  .floating-chat span { display: none; }
  .demo-dialog { padding: 34px 25px 26px; }
  .demo-dialog h2 { font-size: 34px; }
}

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