:root {
  --ink: #193132;
  --muted: #64706f;
  --paper: #f8f2e8;
  --sand: #dfc9a3;
  --sea: #136f78;
  --sea-dark: #0a454b;
  --coral: #d86f4a;
  --white: #fffdf8;
  --line: rgba(25, 49, 50, 0.16);
  --shadow: 0 22px 60px rgba(14, 45, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(17, 45, 47, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(185px, 16vw, 250px);
  max-height: 76px;
  object-fit: contain;
  padding: 9px 14px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 26px rgba(7, 30, 34, 0.13);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 25px;
  line-height: 0.95;
}

.brand small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a,
.header-cta {
  position: relative;
}

.lang-link {
  border: 1px solid currentColor;
  padding: 7px 9px;
}

.main-nav .lang-link::after {
  display: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  padding: 160px clamp(20px, 6vw, 82px) 118px;
}

.hero-img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 38, 43, 0.78), rgba(8, 38, 43, 0.34) 48%, rgba(8, 38, 43, 0.08)),
    linear-gradient(0deg, rgba(8, 38, 43, 0.5), rgba(8, 38, 43, 0.04) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark,
.section-kicker {
  color: var(--sea);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 0.96;
  font-weight: 700;
}

h1 {
  font-size: clamp(78px, 16vw, 190px);
}

h2 {
  font-size: clamp(42px, 6.8vw, 88px);
}

h3 {
  font-size: 33px;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 25px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--coral);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--sea-dark);
}

.hero-strip {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 82px);
  right: clamp(20px, 6vw, 82px);
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
}

.hero-strip span {
  padding: 16px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.44);
}

.section {
  padding: clamp(78px, 9vw, 128px) clamp(20px, 6vw, 82px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.intro-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.experience-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--sea-dark);
  color: var(--white);
}

.experience-band article {
  min-height: 285px;
  padding: clamp(34px, 5vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.experience-band span {
  color: var(--sand);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.experience-band h3 {
  margin-top: 42px;
}

.experience-band p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.72);
}

.feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.feature-reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.92fr);
}

.feature-reverse .feature-media {
  order: 2;
}

.feature-media {
  min-height: 560px;
  box-shadow: var(--shadow);
}

.feature-media.tall {
  min-height: 640px;
}

.feature-media img,
.lido-panel > img,
.destination-grid img,
.mini-gallery img {
  height: 100%;
  object-fit: cover;
}

.feature-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  height: 190px;
  margin-top: 28px;
}

.lido-panel {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  padding-top: 180px;
}

.lido-panel > img {
  position: absolute;
  inset: 0;
}

.lido-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 69, 75, 0.82), rgba(10, 69, 75, 0.22));
}

.lido-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.lido-content p {
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.gallery-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.85fr 1fr;
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 82px) clamp(78px, 9vw, 128px);
  background: #fffaf0;
}

.gallery-section img {
  height: min(54vw, 620px);
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(4, 42, 60, 0.12);
}

.gallery-section img:nth-child(1),
.gallery-section img:nth-child(3) {
  margin-top: clamp(34px, 5vw, 76px);
}

.destination-grid article {
  background: var(--white);
}

.destination-grid img {
  aspect-ratio: 1 / 0.78;
}

.destination-grid div {
  padding: 25px;
}

.destination-grid h3 {
  font-size: 31px;
}

.destination-grid p {
  color: var(--muted);
}

.booking-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-note p {
  color: var(--muted);
  font-size: 18px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(78px, 9vw, 128px) clamp(20px, 6vw, 82px);
  background: #e7ddd0;
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.quote-copy p {
  color: var(--muted);
  font-size: 18px;
}

.whatsapp {
  display: inline-block;
  margin-top: 18px;
  color: var(--sea-dark);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fbf7ef;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 32px;
  padding: 58px clamp(20px, 6vw, 82px);
  background: var(--sea-dark);
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-brand .brand-logo {
  background: var(--white);
}

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 18px;
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-strip,
  .experience-band,
  .intro-grid,
  .feature,
  .feature-reverse,
  .booking-note,
  .quote-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-strip span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.44);
  }

  .feature-reverse .feature-media {
    order: 0;
  }

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

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

  .gallery-section img {
    height: 58vw;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 146px;
    max-height: 60px;
    padding: 7px 10px;
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 210px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .form-row,
  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .feature-media,
  .feature-media.tall {
    min-height: 380px;
  }

  .mini-gallery {
    height: auto;
  }

  .mini-gallery img {
    aspect-ratio: 1.2 / 1;
  }

  .gallery-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-section img,
  .gallery-section img:nth-child(1),
  .gallery-section img:nth-child(3) {
    height: auto;
    aspect-ratio: 1 / 1.05;
    margin-top: 0;
  }
}

/* Macrame-inspired refinement */
:root {
  --ink: #123544;
  --muted: #66777b;
  --paper: #f4efe5;
  --sand: #f3c348;
  --sea: #008fd0;
  --sea-dark: #063c55;
  --coral: #e26643;
  --white: #fffdf8;
  --line: rgba(18, 53, 68, 0.16);
  --shadow: 0 24px 70px rgba(4, 42, 60, 0.22);
}

.site-header {
  grid-template-columns: 1fr auto;
  min-height: 96px;
  padding: 16px clamp(18px, 3.8vw, 54px);
  gap: 18px;
}

.header-menu {
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  width: min(950px, 74vw);
}

.main-nav {
  justify-self: auto;
  gap: clamp(16px, 1.7vw, 28px);
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.brand {
  justify-self: center;
}

.brand-mark-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  padding: 13px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 35px rgba(4, 42, 60, 0.18);
}

.site-header.is-scrolled .brand-mark-logo,
.site-header.is-open .brand-mark-logo {
  box-shadow: 0 10px 28px rgba(4, 42, 60, 0.12);
}

.header-cta {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 255, 255, 0.74);
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  background: var(--sea-dark);
  border-color: var(--sea-dark);
  color: var(--white);
}

.hero {
  min-height: 96vh;
  padding-top: 190px;
  padding-bottom: 130px;
}

.hero-overlay {
  background:
    radial-gradient(circle at 58% 42%, rgba(0, 143, 208, 0.18), transparent 36%),
    linear-gradient(90deg, rgba(6, 60, 85, 0.86), rgba(6, 60, 85, 0.34) 52%, rgba(6, 60, 85, 0.08)),
    linear-gradient(0deg, rgba(6, 60, 85, 0.66), rgba(6, 60, 85, 0.04) 58%);
}

.hero-content {
  max-width: 880px;
}

h1 {
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: var(--coral);
}

.btn-ghost,
.header-cta,
.lang-link {
  backdrop-filter: blur(10px);
}

.intro {
  position: relative;
  background:
    linear-gradient(180deg, var(--paper), #fffaf0);
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 6vw, 82px);
  right: clamp(20px, 6vw, 82px);
  height: 1px;
  background: var(--line);
}

.experience-band {
  background: #08384f;
}

.experience-band article {
  position: relative;
  overflow: hidden;
}

.experience-band article::after {
  content: "";
  position: absolute;
  inset: auto 34px 28px auto;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(243, 195, 72, 0.5);
  border-radius: 50%;
}

.feature-media,
.quote-form,
.destination-grid article {
  border-radius: 0;
}

.feature-media img,
.lido-panel > img,
.destination-grid img,
.mini-gallery img {
  filter: saturate(1.05) contrast(1.02);
}

.lido-panel::after {
  background:
    linear-gradient(90deg, rgba(6, 60, 85, 0.86), rgba(6, 60, 85, 0.34)),
    linear-gradient(0deg, rgba(6, 60, 85, 0.52), transparent 58%);
}

.booking-note {
  background: #fffaf0;
}

.site-footer {
  background: #062f43;
}

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

  .nav-toggle {
    display: block;
    justify-self: start;
    order: 1;
  }

  .header-menu {
    order: 2;
    justify-self: center;
    display: grid;
    grid-template-columns: auto;
    width: auto;
    padding: 0;
  }

  .header-menu.is-open {
    order: 4;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    padding: 12px 0 4px;
    gap: 0;
  }

  .header-menu .brand {
    order: -1;
  }

  .header-menu.is-open .brand {
    margin: 4px 0 14px;
  }

  .header-menu .main-nav {
    display: none;
    width: 100%;
    gap: 0;
  }

  .header-menu.is-open .main-nav {
    display: grid;
  }

  .header-menu .main-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .header-menu .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    justify-self: end;
    order: 2;
  }

  .brand-mark-logo {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 78px;
    padding: 13px 18px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 11px;
  }

  .brand-mark-logo {
    width: 74px;
    height: 74px;
    padding: 10px;
  }

  .hero {
    min-height: 94vh;
    padding-top: 138px;
    padding-bottom: 286px;
  }
}

/* Macrame structural clone for Diomedee */
.macrame-clone {
  --mac-header-height: 190px;
  --mac-ink: #153444;
  --mac-blue: #7aa7c5;
  --mac-blue-dark: #063c55;
  --mac-sand: #b28b5e;
  --mac-sand-light: #dfc79e;
  --mac-paper: #f5f3ef;
  --mac-white: #fffdf8;
  background: var(--mac-paper);
  color: var(--mac-ink);
  overflow-x: hidden;
}

.macrame-clone .mac-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--mac-header-height);
  display: grid;
  grid-template-columns: 108px 1fr auto 1fr auto 54px;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 82px);
  background: rgba(245, 243, 239, 0.94);
  color: var(--mac-ink);
  box-shadow: 0 8px 24px rgba(21, 52, 68, 0.06);
}

.mac-social {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--mac-sand);
  text-transform: uppercase;
}

.mac-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2vw, 36px);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.mac-nav-left {
  justify-content: flex-end;
}

.mac-nav-right {
  justify-content: flex-start;
}

.mac-logo {
  display: grid;
  place-items: center;
}

.mac-logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.mac-book,
.mac-lang,
.mac-small-btn,
.mac-text-link {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.mac-book {
  justify-self: end;
  border: 1px solid var(--mac-sand);
  min-width: 112px;
  padding: 18px 24px;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  color: var(--mac-sand);
}

.mac-lang {
  font-size: 12px;
  color: var(--mac-ink);
}

.mac-burger,
.mac-mobile-panel {
  display: none;
}

.mac-hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-top: var(--mac-header-height);
}

.mac-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.98);
}

.mac-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 35, 48, 0.22);
}

.mac-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 34px;
  color: var(--mac-white);
  text-align: center;
}

.mac-hero h1 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 8.4vw, 134px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.94;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.26);
}

.mac-small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 11px 23px;
  background: var(--mac-white);
  color: var(--mac-sand);
  border: 1px solid var(--mac-white);
}

.mac-small-btn.outline {
  background: transparent;
  color: var(--mac-sand);
  border-color: var(--mac-sand);
}

.mac-welcome {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 64px;
  padding: 95px clamp(26px, 8vw, 140px) 80px;
  background: var(--mac-paper);
}

.mac-shape-blue {
  position: absolute;
  left: 15%;
  top: 70px;
  width: 330px;
  height: 620px;
  background: var(--mac-blue);
  border-radius: 170px 170px 0 0;
}

.mac-shape-sand {
  position: absolute;
  right: 4%;
  top: 130px;
  width: 250px;
  height: 250px;
  background: rgba(178, 139, 94, 0.23);
  border-radius: 46% 54% 48% 52%;
}

.mac-rosette {
  position: absolute;
  left: -45px;
  bottom: 72px;
  width: 210px;
  height: 210px;
  opacity: 0.78;
  background:
    repeating-conic-gradient(from 8deg, transparent 0 9deg, var(--mac-sand) 9deg 12deg),
    radial-gradient(circle, transparent 0 34%, var(--mac-paper) 35% 47%, transparent 48%);
  border-radius: 50%;
}

.mac-welcome-photo {
  position: relative;
  z-index: 1;
  width: min(330px, 70vw);
  justify-self: center;
  aspect-ratio: 0.68 / 1;
  object-fit: cover;
}

.mac-welcome-copy,
.mac-split > div,
.mac-restaurant > div:last-child,
.mac-rooms-copy,
.mac-booking-note {
  position: relative;
  z-index: 1;
}

.mac-welcome-copy h2,
.mac-split h2,
.mac-restaurant h2,
.mac-contact h2,
.mac-gallery h2,
.mac-rooms h2,
.mac-booking-note h2 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 4.7vw, 74px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.mac-welcome-copy h2 span,
.mac-split h2 span,
.mac-restaurant h2 span,
.mac-contact h2 span,
.mac-gallery h2 span,
.mac-rooms h2 span,
.mac-booking-note h2 span {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86em;
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  color: var(--mac-sand);
}

.mac-welcome-copy p,
.mac-split p,
.mac-restaurant p,
.mac-rooms p,
.mac-booking-note p {
  max-width: 520px;
  color: #607278;
  font-size: 16px;
}

.mac-text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--mac-sand);
}

.mac-split,
.mac-restaurant {
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  padding: 80px clamp(26px, 8vw, 140px);
  background: var(--mac-paper);
}

.mac-split img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mac-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px clamp(26px, 5vw, 82px) 0;
  background: var(--mac-sand);
  color: var(--mac-white);
}

.mac-services article {
  min-height: 185px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.mac-services span {
  font-size: 38px;
  line-height: 1;
}

.mac-services h3 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.mac-services p {
  margin: 0;
  max-width: 180px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.mac-image-band {
  position: relative;
  height: 330px;
  margin-top: 90px;
  overflow: hidden;
}

.mac-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.35) saturate(0.75);
}

.mac-image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(178, 139, 94, 0.38);
}

.mac-image-band span {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mac-white);
  color: var(--mac-sand);
}

.mac-restaurant {
  padding-top: 145px;
}

.mac-stack {
  position: relative;
  min-height: 580px;
}

.mac-stack img:first-child {
  width: 72%;
  height: 520px;
  object-fit: cover;
}

.mac-stack img:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 260px;
  object-fit: cover;
}

.mac-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--mac-sand);
}

.mac-contact > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mac-form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(38px, 7vw, 96px);
  color: var(--mac-white);
}

.mac-contact-details {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(38px, 7vw, 96px);
  color: var(--mac-white);
}

.mac-form h2 span {
  color: var(--mac-white);
}

.mac-contact-details h2 span,
.mac-contact-details p {
  color: var(--mac-white);
}

.mac-contact-details p {
  max-width: 480px;
  font-size: 17px;
}

.mac-contact-details a {
  display: block;
  width: fit-content;
  font-size: 18px;
  font-weight: 800;
}

.mac-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mac-form input,
.mac-form select,
.mac-form textarea {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--mac-white);
  min-height: 42px;
  padding: 10px 0;
}

.mac-form input::placeholder,
.mac-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.mac-form option {
  color: var(--mac-ink);
}

.mac-form button {
  min-height: 38px;
  border: 0;
  background: var(--mac-white);
  color: var(--mac-sand);
  font-weight: 800;
  text-transform: uppercase;
}

.mac-gallery {
  padding: 110px clamp(26px, 8vw, 140px);
  background: var(--mac-paper);
  text-align: center;
}

.mac-gallery > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.mac-gallery img {
  height: 430px;
  object-fit: cover;
}

.mac-rooms {
  scroll-margin-top: calc(var(--mac-header-height) + 24px);
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 52px;
  padding: 105px clamp(26px, 8vw, 140px);
  background: var(--mac-white);
  color: var(--mac-ink);
}

.mac-rooms-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  position: sticky;
  top: calc(var(--mac-header-height) + 26px);
}

.mac-rooms-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.mac-rooms-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mac-rooms-gallery .is-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mac-rooms-gallery .is-wide {
  grid-column: span 2;
}

.mac-booking-note {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 60px;
  padding: 85px clamp(26px, 8vw, 140px);
  background: var(--mac-sand);
  color: var(--mac-white);
}

.mac-booking-note h2 span,
.mac-booking-note p {
  color: var(--mac-white);
}

.mac-booking-copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.mac-booking-widget {
  min-height: 420px;
  overflow: hidden;
  background: var(--mac-white);
}

.mac-booking-widget iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.mac-booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--mac-white);
  color: var(--mac-ink);
}

.mac-booking-form label {
  display: grid;
  gap: 7px;
}

.mac-booking-form span {
  color: var(--mac-blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mac-booking-form input,
.mac-booking-form select,
.mac-booking-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 50, 58, 0.18);
  background: #fff;
  color: var(--mac-ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.mac-booking-form textarea {
  resize: vertical;
}

.mac-form-success {
  display: none;
  margin: 0;
  padding: 15px 16px;
  background: #dff4df;
  border: 1px solid #2e7d32;
  color: #155724;
  font-size: 16px;
  font-weight: 900;
}

.mac-booking-note .mac-form-success {
  color: #155724;
}

.mac-form-success.is-visible {
  display: block;
}

.mac-booking-form input:focus,
.mac-booking-form select:focus,
.mac-booking-form textarea:focus {
  border-color: var(--mac-blue-dark);
  box-shadow: 0 0 0 3px rgba(6, 60, 85, 0.12);
}

.mac-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mac-booking-form button {
  border: 0;
  background: var(--mac-blue-dark);
  color: var(--mac-white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  text-transform: uppercase;
}

.mac-booking-form button:hover,
.mac-booking-form button:focus-visible {
  background: #0a4f70;
}

.mac-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 46px;
  padding: 76px clamp(26px, 8vw, 140px);
  background: var(--mac-paper);
  color: var(--mac-ink);
}

.mac-footer img {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
}

.mac-footer h3 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.mac-footer p,
.mac-footer a {
  display: block;
  color: #607278;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .macrame-clone .mac-header {
    grid-template-columns: 54px 1fr auto auto;
    min-height: var(--mac-header-height);
  }

  .mac-social,
  .mac-nav,
  .mac-lang {
    display: none;
  }

  .mac-burger {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--mac-ink);
    border-radius: 50%;
    background: transparent;
    order: 1;
  }

  .mac-burger span {
    width: 22px;
    height: 2px;
    margin: -7px 0;
    background: currentColor;
  }

  .mac-logo {
    order: 2;
  }

  .mac-book {
    order: 3;
  }

  .mac-mobile-panel.is-open {
    grid-column: 1 / -1;
    order: 4;
    display: grid;
    padding-top: 16px;
  }

  .mac-mobile-panel a {
    padding: 15px 0;
    border-top: 1px solid rgba(21, 52, 68, 0.16);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mac-logo img {
    width: 84px;
    height: 84px;
  }

  .mac-welcome,
  .mac-split,
  .mac-restaurant,
  .mac-rooms,
  .mac-contact,
  .mac-booking-note,
  .mac-footer {
    grid-template-columns: 1fr;
  }

  .mac-rooms-copy {
    position: static;
  }

  .mac-services,
  .mac-gallery > div,
  .mac-rooms-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .mac-contact > img {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .macrame-clone {
    --mac-header-height: 118px;
  }

  .macrame-clone .mac-header {
    padding: 11px 18px;
  }

  .mac-book {
    padding: 10px 14px;
  }

  .mac-hero {
    min-height: 690px;
  }

  .mac-welcome,
  .mac-split,
  .mac-restaurant,
  .mac-gallery,
  .mac-rooms,
  .mac-booking-note,
  .mac-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mac-welcome {
    min-height: auto;
    padding-top: 80px;
  }

  .mac-shape-blue {
    left: 18px;
    width: 210px;
    height: 430px;
  }

  .mac-shape-sand {
    right: -60px;
    top: 80px;
  }

  .mac-rosette {
    width: 150px;
    height: 150px;
  }

  .mac-services,
  .mac-gallery > div,
  .mac-rooms-gallery,
  .mac-form-row,
  .mac-form-grid {
    grid-template-columns: 1fr;
  }

  .mac-rooms-gallery {
    grid-auto-rows: auto;
  }

  .mac-rooms-gallery img,
  .mac-rooms-gallery .is-large,
  .mac-rooms-gallery .is-wide {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .mac-booking-form {
    padding: 22px;
  }

  .mac-services article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .mac-stack {
    order: 2;
    min-height: 500px;
  }

  .mac-restaurant > div:last-child {
    order: 1;
  }

  .mac-stack img:first-child,
  .mac-stack img:last-child {
    width: 100%;
    height: auto;
    position: static;
    aspect-ratio: 0.9 / 1;
    margin-bottom: 14px;
  }

  .mac-stack img:last-child {
    width: 82%;
    margin-left: auto;
  }

  .mac-gallery img {
    height: auto;
    aspect-ratio: 1 / 1.15;
  }
}

/* Visual refinements after client review */
.macrame-clone {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mac-social {
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--mac-sand);
}

.social-icon svg {
  width: 25px;
  height: 25px;
  overflow: visible;
}

.social-icon rect,
.social-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon path {
  fill: currentColor;
  stroke: none;
}

.mac-hero > img {
  object-position: center 47%;
  filter: saturate(0.98) contrast(0.96);
}

.mac-hero::after {
  background: linear-gradient(180deg, rgba(6, 35, 48, 0.16), rgba(6, 35, 48, 0.32));
}

.mac-hero h1,
.mac-welcome-copy h2 span,
.mac-split h2 span,
.mac-restaurant h2 span,
.mac-contact h2 span,
.mac-gallery h2 span,
.mac-rooms h2 span,
.mac-booking-note h2 span {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mac-hero h1 {
  font-weight: 600;
}

.mac-welcome-copy h2,
.mac-split h2,
.mac-restaurant h2,
.mac-contact h2,
.mac-gallery h2,
.mac-rooms h2,
.mac-booking-note h2,
.mac-services h3,
.mac-footer h3 {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mac-welcome {
  min-height: 560px;
  gap: clamp(36px, 5vw, 56px);
  padding-top: 66px;
  padding-bottom: 58px;
}

.mac-shape-blue {
  top: 52px;
  width: 270px;
  height: 455px;
}

.mac-shape-sand {
  top: 100px;
  width: 210px;
  height: 210px;
}

.mac-rosette {
  bottom: 42px;
  width: 160px;
  height: 160px;
}

.mac-welcome-photo {
  width: min(285px, 60vw);
  height: 430px;
  aspect-ratio: auto;
}

.mac-split {
  padding-top: 54px;
  padding-bottom: 58px;
}

.mac-split img {
  width: min(480px, 100%);
  height: 470px;
  justify-self: center;
  aspect-ratio: auto;
  object-position: center;
}

.mac-services .service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--mac-white);
  font-size: 0;
}

.mac-services .service-icon svg {
  width: 42px;
  height: 42px;
}

.mac-services .service-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mac-image-band .band-mark {
  width: 56px;
  height: 56px;
  padding: 10px;
  background: var(--mac-white);
  box-shadow: 0 10px 28px rgba(21, 52, 68, 0.12);
}

.mac-image-band .band-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
}

.mac-footer-social {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

@media (max-width: 1120px) {
  .mac-social {
    display: none;
  }
}

@media (max-width: 640px) {
  .mac-hero > img {
    object-position: 50% 50%;
  }

  .mac-welcome {
    padding-top: 54px;
    padding-bottom: 42px;
    gap: 30px;
  }

  .mac-shape-blue {
    top: 44px;
    width: 178px;
    height: 330px;
  }

  .mac-shape-sand {
    width: 150px;
    height: 150px;
  }

  .mac-rosette {
    width: 118px;
    height: 118px;
  }

  .mac-welcome-photo {
    width: min(230px, 68vw);
    height: 330px;
  }

  .mac-split {
    padding-top: 40px;
    padding-bottom: 42px;
    gap: 28px;
  }

  .mac-split img {
    height: 330px;
  }

  .mac-services .service-icon {
    width: 40px;
    height: 40px;
  }

  .mac-services .service-icon svg {
    width: 36px;
    height: 36px;
  }
}

/* Mobile header and hero hardening */
@media (max-width: 640px) {
  .macrame-clone {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .macrame-clone .mac-header {
    grid-template-columns: minmax(72px, 1fr) auto minmax(72px, 1fr);
    gap: 10px;
    padding: 14px 12px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .mac-burger {
    justify-self: start;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .mac-burger span {
    width: 21px;
    height: 2px;
    margin: -6px 0;
  }

  .mac-burger span {
    margin: 0;
  }

  .mac-header.is-open .mac-burger span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .mac-header.is-open .mac-burger span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mac-logo {
    justify-self: center;
  }

  .mac-logo img {
    width: 68px;
    height: 68px;
  }

  .mac-book {
    justify-self: end;
    min-width: 84px;
    max-width: 92px;
    padding: 11px 12px;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .mac-mobile-panel.is-open {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }

  .mac-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 720px;
    overflow: hidden;
  }

  .mac-hero-content {
    width: min(90vw, 360px);
    gap: 26px;
  }

  .mac-hero h1 {
    max-width: 100%;
    font-size: clamp(43px, 14vw, 58px);
    line-height: 0.94;
    white-space: normal;
    text-wrap: balance;
  }

  .mac-hero .mac-small-btn {
    max-width: 88vw;
    padding-inline: 20px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .macrame-clone .mac-header {
    grid-template-columns: minmax(58px, 1fr) auto minmax(64px, 1fr);
    padding-inline: 10px;
    gap: 8px;
  }

  .mac-logo img {
    width: 64px;
    height: 64px;
  }

  .mac-book {
    min-width: 76px;
    max-width: 80px;
    padding-inline: 8px;
    font-size: 9px;
  }
}
