:root {
  --hy-bg: #f8f1ec;
  --hy-bg-2: #fbf7f3;
  --hy-card: #fffaf6;
  --hy-text: #31251f;
  --hy-muted: #78665c;
  --hy-accent: #b8876f;
  --hy-accent-dark: #8f604d;
  --hy-gold: #c4a46d;
  --hy-line: rgba(49, 37, 31, 0.12);
  --hy-line-strong: rgba(49, 37, 31, 0.18);
  --hy-white: #fffaf6;
  --hy-dark: #2f231e;
  --hy-shadow: 0 22px 70px rgba(49, 37, 31, 0.11);
  --hy-shadow-soft: 0 12px 38px rgba(49, 37, 31, 0.08);
  --hy-radius-xl: 44px;
  --hy-radius-lg: 30px;
  --hy-max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--hy-bg) !important;
  color: var(--hy-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

#content {
  background: var(--hy-bg) !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0 !important;
  overflow: hidden;
  background: var(--hy-bg);
}

.page main {
  width: 100%;
  display: block;
  background: var(--hy-bg);
  margin-bottom: 0 !important;
}

.page + p,
.page + br {
  display: none !important;
}

.container {
  width: min(var(--hy-max), calc(100% - 48px));
  margin: 0 auto;
}

.announcement {
  background: #efe2d9;
  color: var(--hy-muted);
  text-align: center;
  padding: 10px 18px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(248, 241, 236, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hy-line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.brand {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--hy-muted);
}

.nav-links a:hover {
  color: var(--hy-accent-dark);
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item > a::after {
  content: "▾";
  font-size: 10px;
  line-height: 1;
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 270px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.96);
  border: 1px solid var(--hy-line);
  box-shadow: var(--hy-shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 80;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hy-muted);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #efe2d9;
  color: var(--hy-accent-dark);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-actions {
  position: absolute;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--hy-line);
  background: transparent;
  color: var(--hy-text);
  cursor: pointer;
}

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

.mobile-panel {
  display: none;
  border-top: 1px solid var(--hy-line);
  padding: 16px 0 22px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--hy-muted);
}

.mobile-panel a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--hy-line);
}

.mobile-panel .mobile-sub-link {
  padding-left: 18px;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--hy-accent-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--hy-text);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--hy-shadow-soft);
  background: var(--hy-accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--hy-text);
  border-color: var(--hy-line-strong);
}

.button.secondary:hover {
  background: var(--hy-card);
  color: var(--hy-accent-dark);
  border-color: rgba(143, 96, 77, 0.3);
}

.button.light {
  background: var(--hy-white);
  color: var(--hy-dark);
}

.button.light:hover {
  background: #f2dfd3;
  color: var(--hy-accent-dark);
}

.hero {
  position: relative;
  width: 100%;
  padding: 90px 0 74px;
  background: var(--hy-bg);
}

.hero::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -240px;
  top: 60px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(184,135,111,0.20), rgba(248,241,236,0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hy-accent-dark);
  margin-bottom: 17px;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 635px;
  font-family: Calibri, Arial, sans-serif;
  font-size: 20px;
  color: var(--hy-muted);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 42px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 660px;
}

.trust-item {
  padding: 16px 18px;
  border: 1px solid var(--hy-line);
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.55);
  font-family: Arial, sans-serif;
}

.trust-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  color: var(--hy-text);
  font-weight: 400;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--hy-muted);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  border-radius: var(--hy-radius-xl);
  overflow: hidden;
  box-shadow: var(--hy-shadow);
  border: 1px solid rgba(255,255,255,0.66);
  background: linear-gradient(to top, rgba(49,37,31,0.48), rgba(49,37,31,0.05) 58%), url('/assets/images/helloyoucosmetics-04-816x1224.jpg') center/cover no-repeat;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 250, 246, 0.48);
  border-radius: 34px;
  pointer-events: none;
}

.hero-image-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 250, 246, 0.90);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: var(--hy-shadow-soft);
}

.hero-image-label strong {
  display: block;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 400;
}

.hero-image-label span {
  display: block;
  font-family: Calibri, Arial, sans-serif;
  font-size: 15px;
  color: var(--hy-muted);
}

.section {
  width: 100%;
  padding: 84px 0;
  background: var(--hy-bg);
}

.section-header {
  max-width: 800px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header p,
.large-text {
  font-family: Calibri, Arial, sans-serif;
  font-size: 18px;
  color: var(--hy-muted);
}

.intro-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.intro-card {
  padding: 42px;
  border-radius: var(--hy-radius-lg);
  background: var(--hy-card);
  border: 1px solid var(--hy-line);
  box-shadow: var(--hy-shadow-soft);
}

.intro-card h3 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.intro-card p {
  font-family: Calibri, Arial, sans-serif;
  color: var(--hy-muted);
  font-size: 17px;
  margin-bottom: 18px;
}

.intro-signature {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hy-line);
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: var(--hy-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-highlight {
  padding: 42px;
  border-radius: var(--hy-radius-lg);
  background: linear-gradient(135deg, rgba(255,250,246,0.84), rgba(242,223,211,0.76)), url('/assets/images/helloyoucosmetics-05-816x1223.jpg') center/cover no-repeat;
  border: 1px solid rgba(184,135,111,0.23);
  display: grid;
  align-content: end;
  min-height: 410px;
}

.intro-highlight h3 {
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.intro-highlight p {
  font-family: Calibri, Arial, sans-serif;
  max-width: 570px;
  color: var(--hy-muted);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  min-height: 335px;
  padding: 30px;
  border-radius: var(--hy-radius-lg);
  background: var(--hy-card);
  border: 1px solid var(--hy-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  background: rgba(184,135,111,0.11);
  transition: transform 0.26s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--hy-shadow-soft);
  border-color: rgba(143, 96, 77, 0.24);
}

.service-card:hover::before {
  transform: scale(1.35);
}

.service-card h3 {
  position: relative;
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 14px;
}

.service-card p {
  font-family: Calibri, Arial, sans-serif;
  position: relative;
  color: var(--hy-muted);
  font-size: 16px;
}

.card-link {
  position: relative;
  margin-top: 28px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hy-accent-dark);
}

.split-band {
  width: 100%;
  background: var(--hy-bg-2);
  border-top: 1px solid var(--hy-line);
  border-bottom: 1px solid var(--hy-line);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 18px;
  align-items: end;
}

.visual-tile {
  min-height: 480px;
  border-radius: 36px;
  box-shadow: var(--hy-shadow);
  border: 1px solid rgba(255,255,255,0.72);
  background: linear-gradient(to top, rgba(49,37,31,0.34), rgba(49,37,31,0.04) 60%), url('/assets/images/helloyoucosmetics-06-816x1223.jpg') center/cover no-repeat;
}

.visual-tile.small {
  min-height: 340px;
  background: linear-gradient(to top, rgba(49,37,31,0.28), rgba(49,37,31,0.02) 58%), url('/assets/images/helloyoucosmetics-05-816x1223.jpg') center/cover no-repeat;
}

.split-copy p {
  font-family: Calibri, Arial, sans-serif;
  color: var(--hy-muted);
  font-size: 18px;
  margin-bottom: 18px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
}

.feature-item {
  display: flex;
  gap: 13px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--hy-card);
  border: 1px solid var(--hy-line);
  font-family: Calibri, Arial, sans-serif;
  color: var(--hy-muted);
  font-size: 14px;
}

.feature-item::before {
  content: "✦";
  color: var(--hy-gold);
  flex: 0 0 auto;
}

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

.package-card {
  min-height: 320px;
  padding: 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,250,246,0.95), rgba(242,223,211,0.88)), radial-gradient(circle at top right, rgba(196,164,109,0.24), transparent 34%);
  border: 1px solid rgba(184,135,111,0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 32px rgba(49,37,31,0.06);
}

.package-card h3 {
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.package-card p {
  font-family: Calibri, Arial, sans-serif;
  color: var(--hy-muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.price-note {
  display: inline-flex;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--hy-line);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hy-muted);
  margin-bottom: 18px;
}

.testimonial {
  width: 100%;
  padding: 94px 0;
  background: var(--hy-dark);
  color: var(--hy-white);
  text-align: center;
}

.testimonial-slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 245px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial blockquote {
  max-width: 920px;
  margin: 0 auto 24px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.testimonial cite {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e7cdbd;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,250,246,0.26);
  background: transparent;
  color: var(--hy-white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-arrow:hover {
  background: rgba(255,250,246,0.10);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,250,246,0.35);
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--hy-white);
}

.testimonial-more {
  margin-top: 34px;
}

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

.shop-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,250,246,0.88), rgba(255,250,246,0.96)), radial-gradient(circle at top, rgba(184,135,111,0.16), transparent 44%);
  border: 1px solid var(--hy-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  color: inherit;
  text-decoration: none;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hy-shadow-soft);
}

.product-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ead2c4, #b8876f);
  margin-bottom: 30px;
}

.shop-card h3 {
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 8px;
}

.shop-card p {
  font-family: Calibri, Arial, sans-serif;
  color: var(--hy-muted);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-tile {
  position: relative;
  display: block;
  min-height: 340px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--hy-shadow-soft);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--hy-card);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(49,37,31,0.22), rgba(49,37,31,0.02) 58%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gallery-tile:hover img {
  transform: scale(1.045);
  filter: brightness(1.03);
}

.gallery-tile:hover::after {
  opacity: 0.55;
}

.gallery-tile:nth-child(2) img {
  min-height: 430px;
}

.hy-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(47, 35, 30, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease, visibility 0.35s ease;
}

.hy-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(47, 35, 30, 0.88);
}

.hy-lightbox img {
  max-width: min(96vw, 1300px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.42);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hy-lightbox.is-open img {
  transform: scale(1);
  opacity: 1;
}

.hy-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,250,246,0.45);
  border-radius: 999px;
  background: rgba(255,250,246,0.12);
  color: #fffaf6;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
  border: 1px solid var(--hy-line);
  background: var(--hy-card);
  padding: 19px 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  line-height: 1.25;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  font-family: Calibri, Arial, sans-serif;
  margin-top: 14px;
  color: var(--hy-muted);
  font-size: 16px;
}

.booking-section {
  width: 100%;
  padding: 84px 0 320px;
  background: var(--hy-bg);
  margin-bottom: 0 !important;
}

.booking-section:last-child {
  margin-bottom: 0 !important;
}

.booking-section + p,
.booking-section + br {
  display: none !important;
}

.booking-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  padding: 52px;
  border-radius: var(--hy-radius-xl);
  background: linear-gradient(135deg, rgba(184,135,111,0.22), rgba(255,250,246,0.94)), radial-gradient(circle at top right, rgba(196,164,109,0.28), transparent 36%);
  border: 1px solid rgba(184,135,111,0.23);
  box-shadow: var(--hy-shadow-soft);
}

.booking-copy p {
  font-family: Calibri, Arial, sans-serif;
  max-width: 650px;
  color: var(--hy-muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.contact-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,250,246,0.82);
  border: 1px solid rgba(255,255,255,0.66);
  font-family: Calibri, Arial, sans-serif;
}

.contact-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.rounded-brand {
  font-family: "Arial Rounded MT Bold", Arial, sans-serif;
  font-weight: 700;
}

.contact-row {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hy-line);
  font-family: Calibri, Arial, sans-serif;
  color: var(--hy-muted);
  font-size: 14px;
}

.contact-row strong {
  color: var(--hy-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  font-family: Arial, sans-serif;
}

.simple-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.simple-form input,
.simple-form textarea,
.simple-form select {
  width: 100%;
  border: 1px solid var(--hy-line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--hy-text);
  outline: none;
  font-family: Calibri, Arial, sans-serif;
  font-size: 14px;
}

.simple-form textarea {
  min-height: 115px;
  resize: vertical;
}

.simple-form input:focus,
.simple-form textarea:focus,
.simple-form select:focus {
  border-color: rgba(143, 96, 77, 0.5);
  box-shadow: 0 0 0 3px rgba(184,135,111,0.12);
}

@media (max-width: 1020px) {
  .nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    position: static;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero-grid,
  .intro-panel,
  .split-grid,
  .faq-grid,
  .booking-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-visual {
    min-height: 540px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, var(--hy-max));
  }

  .announcement {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .nav-actions .button {
    display: none;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-lead,
  .section-header p,
  .large-text,
  .split-copy p,
  .booking-copy p {
    font-size: 17px;
  }

  .trust-row,
  .services-grid,
  .packages-grid,
  .shop-grid,
  .gallery-grid-expanded {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 32px;
  }

  .hero-image-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .intro-card,
  .intro-highlight,
  .package-card,
  .booking-box {
    padding: 30px;
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .visual-tile,
  .visual-tile.small {
    min-height: 315px;
  }

  .testimonial {
    padding: 70px 0;
  }

  .testimonial-track {
    min-height: 360px;
  }

  .gallery-tile,
  .gallery-tile img,
  .gallery-tile:nth-child(2) img {
    min-height: 315px;
  }

  .booking-section {
    padding: 64px 0 260px;
  }
}
