:root {
  --green: #2f3d31;
  --green-deep: #252b24;
  --sage: #74715f;
  --paper: #fbf7ef;
  --linen: #efe5d7;
  --peach: #b88a68;
  --rose: #9c6a4a;
  --wood: #9c6a4a;
  --ink: #253128;
  --muted: #6d6961;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid rgba(34, 55, 41, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--white);
  display: grid;
  line-height: 1;
  min-width: max-content;
  text-transform: uppercase;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: var(--green);
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand small {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  margin-top: 5px;
}

.site-nav {
  align-items: center;
  color: rgba(255, 253, 248, 0.94);
  display: flex;
  gap: 26px;
  font-size: 0.9rem;
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
  color: var(--green);
}

.site-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--wood);
}

.nav-cta {
  background: var(--white);
  color: var(--green);
  padding: 11px 16px;
}

.site-header.is-scrolled .nav-cta,
.site-header.is-open .nav-cta {
  background: var(--green);
  color: var(--white);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 38px;
  padding: 0;
  width: 42px;
}

.menu-button span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px auto;
  transition: background 160ms ease;
  width: 24px;
}

.site-header.is-scrolled .menu-button span,
.site-header.is-open .menu-button span {
  background: var(--green);
}

.hero {
  align-items: center;
  display: flex;
  min-height: 94vh;
  overflow: hidden;
  padding: 120px clamp(22px, 7vw, 92px) 76px;
  position: relative;
}

.hero > img,
.visit-section > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero > img {
  object-position: center 64%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(37, 43, 36, 0.78), rgba(43, 38, 30, 0.36) 54%, rgba(43, 38, 30, 0.12)),
    linear-gradient(0deg, rgba(43, 38, 30, 0.18), rgba(37, 43, 36, 0.18));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

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

.hero .eyebrow,
.visit-content .eyebrow {
  color: #d9c0a3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.55rem, 9vw, 8.2rem);
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 820px;
}

h2 {
  color: var(--green);
  font-size: clamp(2.25rem, 4.4vw, 4.7rem);
  line-height: 1;
  margin-bottom: 26px;
}

h3 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 12px;
}

.hero-content p:not(.eyebrow),
.visit-content p {
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.65;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: var(--green);
}

.button.ghost {
  border-color: rgba(255, 253, 248, 0.58);
  color: var(--white);
}

.button.secondary,
.button.dark {
  background: var(--green);
  color: var(--white);
}

.button.outline {
  border-color: rgba(34, 55, 41, 0.24);
  color: var(--green);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(22px, 6vw, 84px);
}

.intro-section,
.structure-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
}

.section-copy p:not(.eyebrow),
.section-heading p,
.split-story p,
.experience-grid p,
.why-grid p,
.testimonial p,
.gallery-description {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.section-copy p + p {
  margin-top: 18px;
}

.image-pair {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.92fr 1.08fr;
}

.image-pair img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-pair img:nth-child(2) {
  margin-top: 44px;
}

.owner-section {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  padding-bottom: clamp(82px, 10vw, 136px);
  padding-top: clamp(82px, 10vw, 136px);
}

.owner-photo {
  justify-self: end;
  max-width: 460px;
  position: relative;
}

.owner-photo::before {
  border: 1px solid rgba(47, 61, 49, 0.2);
  content: "";
  inset: 18px -18px -18px 18px;
  position: absolute;
}

.owner-photo img {
  aspect-ratio: 4 / 5.25;
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.owner-copy {
  max-width: 690px;
}

.owner-copy h2 {
  max-width: 620px;
}

.owner-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.86;
  text-align: justify;
  text-justify: inter-word;
}

.owner-copy p + p {
  margin-top: 14px;
}

.owner-copy .owner-lead {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 22px;
}

.owner-copy .owner-closing {
  color: var(--green);
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.62;
  margin: 24px auto 0;
  max-width: 560px;
  text-align: center;
}

.making-story {
  align-items: center;
  background: var(--linen);
  display: grid;
  gap: clamp(36px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  padding-bottom: clamp(82px, 10vw, 136px);
  padding-top: clamp(82px, 10vw, 136px);
}

.making-copy {
  max-width: 760px;
}

.making-copy h2 {
  max-width: 680px;
}

.making-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-word;
}

.making-copy p + p {
  margin-top: 18px;
}

.making-copy .making-lead {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.35vw, 2.16rem);
  line-height: 1.25;
  margin-bottom: 28px;
}

.making-images {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.82fr;
}

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

.making-images img:first-child {
  aspect-ratio: 4 / 5;
}

.making-images img:nth-child(2) {
  aspect-ratio: 4 / 5.7;
  margin-top: 58px;
}

.feeling-band {
  background: var(--green);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.feeling-band div {
  border-left: 1px solid rgba(255, 253, 248, 0.16);
  padding: 42px clamp(22px, 4vw, 54px);
}

.feeling-band strong,
.feeling-band span {
  display: block;
}

.feeling-band strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.feeling-band span {
  color: rgba(255, 253, 248, 0.74);
  line-height: 1.6;
}

.experience-section {
  background: var(--white);
}

.section-heading {
  margin: 0 auto 46px;
  max-width: 880px;
  text-align: center;
}

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

.experience-grid article {
  background: #f3eadf;
  border: 1px solid rgba(34, 55, 41, 0.1);
  display: grid;
  grid-template-rows: 280px 1fr;
}

.experience-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.experience-grid article > div {
  padding: 26px;
}

.experience-grid span {
  color: var(--wood);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.split-story {
  background: var(--linen);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
}

.split-story img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.split-story > div {
  align-self: center;
  padding: clamp(46px, 8vw, 100px);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--wood);
  display: inline-block;
  font-weight: 900;
  margin-top: 16px;
  padding-bottom: 5px;
}

.structure-section {
  background: var(--white);
}

.structure-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.structure-list span {
  background: var(--paper);
  border: 1px solid rgba(34, 55, 41, 0.1);
  color: var(--green);
  line-height: 1.45;
  min-height: 64px;
  padding: 20px;
}

.location-section {
  align-items: center;
  background: var(--linen);
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.map-panel {
  background: var(--linen);
  border: 1px solid rgba(34, 55, 41, 0.12);
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.map-panel iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 440px;
  width: 100%;
}

.map-open-link {
  background: var(--green);
  bottom: 18px;
  color: var(--white);
  font-weight: 900;
  left: 18px;
  padding: 13px 16px;
  position: absolute;
  z-index: 2;
}

.gallery-section {
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -12px auto 34px;
  max-width: 980px;
}

.gallery-filters button {
  background: var(--white);
  border: 1px solid rgba(34, 55, 41, 0.16);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 11px 14px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.gallery-empty {
  background: var(--white);
  border: 1px solid rgba(34, 55, 41, 0.12);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 560px;
  padding: 22px;
  text-align: center;
}

.gallery-empty[hidden] {
  display: none;
}

.gallery-description {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: -10px auto 34px;
  max-width: 820px;
}

.gallery-description:empty {
  display: none;
}

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

.gallery-card {
  aspect-ratio: 4 / 3.35;
  background: var(--linen);
  border: 0;
  color: var(--white);
  cursor: zoom-in;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-card.wide {
  grid-column: auto;
}

.gallery-card.tall {
  grid-row: auto;
  min-height: 0;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.001);
  transition: transform 220ms ease, filter 220ms ease;
  width: 100%;
}

.gallery-card::after {
  background: linear-gradient(0deg, rgba(23, 37, 29, 0.58), rgba(23, 37, 29, 0.02) 58%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.gallery-card span {
  bottom: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  left: 18px;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(12, 1fr);
}

.proposal-gallery {
  column-count: 3;
  column-gap: 16px;
}

.proposal-gallery img {
  break-inside: avoid;
  margin: 0 0 16px;
  object-fit: cover;
  width: 100%;
}

.proposal-gallery img:nth-child(2),
.proposal-gallery img:nth-child(4),
.proposal-gallery img:nth-child(7) {
  aspect-ratio: 4 / 5;
}

.proposal-gallery img:nth-child(1),
.proposal-gallery img:nth-child(5),
.proposal-gallery img:nth-child(8) {
  aspect-ratio: 5 / 3.8;
}

.gallery img {
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.gallery img:nth-child(1) {
  grid-column: span 7;
}

.gallery img:nth-child(2) {
  grid-column: span 5;
}

.gallery img:nth-child(3),
.gallery img:nth-child(4),
.gallery img:nth-child(6) {
  grid-column: span 4;
}

.gallery img:nth-child(5) {
  grid-column: span 8;
}

.trust-section {
  background: var(--white);
  text-align: center;
}

.testimonials-section {
  background: var(--white);
}

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

.testimonial {
  background: var(--paper);
  border: 1px solid rgba(34, 55, 41, 0.1);
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto 1fr auto;
  min-height: 360px;
  padding: 28px;
}

.testimonial-photo {
  align-items: center;
  background: var(--linen);
  color: var(--green);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}

.testimonial-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.testimonial p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.55;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--green);
  margin-bottom: 6px;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial .testimonial-rating {
  color: var(--wood);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.testimonials-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

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

.why-grid article {
  background: #f3eadf;
  border: 1px solid rgba(34, 55, 41, 0.1);
  min-height: 280px;
  padding: 28px;
}

.why-grid span {
  color: var(--wood);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.lightbox {
  align-items: center;
  background: rgba(17, 26, 20, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 72px 22px 38px;
  position: fixed;
  z-index: 40;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 82vh;
  object-fit: contain;
  width: min(1100px, 100%);
}

.lightbox p {
  bottom: 22px;
  color: var(--white);
  left: 22px;
  margin: 0;
  position: absolute;
  right: 22px;
  text-align: center;
}

.lightbox-close {
  background: var(--white);
  border: 0;
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
  padding: 12px 16px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.lightbox-nav {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border: 0;
  border-radius: 999px;
  color: var(--green);
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  height: clamp(48px, 7vw, 72px);
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 160ms ease, transform 160ms ease;
  width: clamp(48px, 7vw, 72px);
}

.lightbox-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: clamp(12px, 3vw, 34px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 34px);
}

.visit-section {
  align-items: center;
  background: #241f18;
  display: flex;
  min-height: 78vh;
  overflow: hidden;
  padding: clamp(70px, 8vw, 120px) clamp(22px, 6vw, 84px);
  position: relative;
}

.visit-section > img.show-full {
  object-fit: contain;
}

.visit-section::after {
  background: linear-gradient(90deg, rgba(43, 38, 30, 0.84), rgba(43, 38, 30, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.visit-content {
  color: var(--white);
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.visit-content h2 {
  color: var(--white);
}

.floating-whatsapp {
  background: var(--wood);
  bottom: 20px;
  box-shadow: 0 16px 34px rgba(43, 38, 30, 0.2);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 14px 18px;
  position: fixed;
  right: 20px;
  z-index: 18;
}

.site-footer {
  align-items: center;
  background: #2b261e;
  color: rgba(255, 253, 248, 0.78);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 84px);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: flex-end;
}

.cookie-banner {
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(34, 55, 41, 0.16);
  bottom: 18px;
  box-shadow: 0 18px 50px rgba(23, 37, 29, 0.18);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  left: 18px;
  max-width: 920px;
  padding: 22px;
  position: fixed;
  right: 18px;
  z-index: 50;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cookie-actions button {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 11px 13px;
}

.cookie-actions button:nth-child(2),
.cookie-actions button:nth-child(3) {
  background: var(--white);
  color: var(--green);
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  margin: 0 auto;
  max-width: 880px;
}

.legal-content h1 {
  color: var(--green);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 28px;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.legal-content .button {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--paper);
    box-shadow: 0 20px 60px rgba(34, 55, 41, 0.18);
    color: var(--green);
    display: none;
    flex-direction: column;
    gap: 4px;
    left: 18px;
    padding: 20px;
    position: absolute;
    right: 18px;
    top: 72px;
  }

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

  .site-nav a {
    padding: 11px 0;
    width: 100%;
  }

  .nav-cta {
    background: var(--green);
    color: var(--white);
    padding: 13px 16px;
    text-align: center;
  }

  .intro-section,
  .owner-section,
  .making-story,
  .structure-section,
  .location-section,
  .split-story {
    grid-template-columns: 1fr;
  }

  .owner-photo {
    justify-self: center;
    max-width: 520px;
  }

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

  .category-gallery,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card,
  .gallery-card.wide {
    grid-column: auto;
  }

  .experience-grid article {
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-rows: auto;
  }

  .split-story img {
    height: 520px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .hero {
    align-items: flex-end;
    min-height: 90vh;
    padding: 116px 20px 42px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(43, 38, 30, 0.84), rgba(43, 38, 30, 0.18) 74%),
      linear-gradient(90deg, rgba(37, 43, 36, 0.46), rgba(43, 38, 30, 0.1));
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 20px;
  }

  .image-pair,
  .making-images,
  .feeling-band,
  .experience-grid article,
  .structure-list,
  .location-actions {
    grid-template-columns: 1fr;
  }

  .location-actions {
    display: grid;
  }

  .map-panel {
    min-height: 340px;
  }

  .image-pair img {
    aspect-ratio: 4 / 4.7;
  }

  .owner-photo::before {
    inset: 12px -10px -12px 10px;
  }

  .owner-photo {
    max-width: 420px;
  }

  .owner-photo img {
    aspect-ratio: 4 / 5.1;
  }

  .image-pair img:nth-child(2) {
    margin-top: 0;
  }

  .making-images img:nth-child(2) {
    margin-top: 0;
  }

  .feeling-band div {
    border-left: 0;
    border-top: 1px solid rgba(255, 253, 248, 0.16);
    padding: 30px 20px;
  }

  .experience-grid article {
    grid-template-rows: 290px auto;
  }

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

  .category-gallery,
  .testimonials-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.tall {
    min-height: 0;
  }

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

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: auto;
    height: 330px;
  }

  .split-story img {
    height: 430px;
  }

  .split-story > div {
    padding: 54px 20px;
  }

  .visit-section {
    min-height: 80vh;
    padding: 70px 20px;
  }

  .floating-whatsapp {
    bottom: 14px;
    left: 14px;
    right: 14px;
    text-align: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 86px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .cookie-actions {
    justify-content: flex-start;
  }
}
