

:root {
  --coffee: #452818;
  --caramel: #734120;
  --khaki: #B5885E;
  --gold: #E0C49F;
  --cream: #E8D3B8;

  --font-title: 'Arboreto', serif;
  --font-sub: 'Josefin Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-script: 'Italianno', cursive;
  --font-logo: 'Ballet', cursive;
  --hero-text: rgba(236, 236, 236, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--coffee);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

input,
button {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

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

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-top: 10px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 20, 10, 0.15);
  z-index: 1;
}

.header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 28px 80px 0;
  gap: 20px;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-top: 0;
}

.header-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.header-icon-left {
  justify-self: start;
}

.header-icon-right {
  justify-self: end;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.logo {
  font-family: var(--font-logo);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--hero-text);
  text-decoration: none;
  text-align: center;
}

.nav {
  display: flex;
  gap: 42px;
  margin-top: 18px;
}

.nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--hero-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--hero-text);
  transition: width 0.4s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 40px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 68px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 2px;
  color: var(--hero-text);
  text-transform: uppercase;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeIn 2.5s ease forwards;
  animation-delay: 0.3s;
}

.hero-title span {
  display: block;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--hero-text);
  text-decoration: none;
  padding: 6px 11px;
  border: 1px solid var(--hero-text);
  border-radius: 9px;
  transition: background 0.3s ease, color 0.3s ease;
  opacity: 0;
  animation: fadeIn 2.5s ease forwards;
  animation-delay: 1s;
}

.hero-cta:hover {
  background: var(--hero-text);
  color: var(--coffee);
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.slogan-bar {
  background: rgba(69, 40, 22, 1);
  padding: 24px 28px;
  text-align: center;
}

.slogan-bar p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hero-text);
}

.section-2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
}

.section-2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.section-2-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 6, 0.35);
  z-index: 1;
}

.section-2-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  text-align: center;
}

.quote-block {
  position: relative;
  display: inline-block;
  padding: 0 80px;
}

.quote-mark {
  position: absolute;
  font-family: var(--font-title);
  font-size: 140px;
  line-height: 1;
  color: var(--hero-text);
}

.quote-open {
  top: -60px;
  left: 30px;
}

.quote-close {
  bottom: -130px;
  right: 150px;
}

.section-2-quote {
  font-family: var(--font-title);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hero-text);
  white-space: nowrap;
}

.section-2-quote .quote-line {
  display: block;
}

.section-2-quote .deco-s {
  font-family: var(--font-logo);
  font-size: 90px;
  line-height: 0.6;
  text-transform: none;
  vertical-align: middle;
  display: inline-block;
  margin: 0 -4px;
  color: var(--hero-text);
}

.section-2-signature {
  width: 680px;
  opacity: 0.95;
}

.section-3 {
  background: var(--khaki);
  padding: 100px 80px 100px;
  text-align: center;
}

.section-3-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-3-image {
  width: 100%;
  max-width: 820px;
  height: auto;
  display: block;
}

.section-3-title {
  margin-top: -30px;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hero-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.section-3-title .deco-c {
  font-family: var(--font-logo);
  font-size: 90px;
  line-height: 0.6;
  text-transform: none;
  margin-right: -8px;
  color: var(--hero-text);
}

.section-3-title .title-rest {
  letter-spacing: 3px;
}

.section-3-desc {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--hero-text);
  max-width: 800px;
}

.section-3-cta {
  margin-top: 40px;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--hero-text);
  text-decoration: none;
  padding: 7px 18px;
  border: 1px solid var(--hero-text);
  border-radius: 9px;
  transition: background 0.3s ease, color 0.3s ease;
}

.section-3-cta:hover {
  background: var(--hero-text);
  color: var(--khaki);
}

.section-4 {
  position: relative;
  display: flex;
  background: var(--coffee);
  padding: 110px 0 80px 100px;
  gap: 80px;
  align-items: center;
}

.section-4-left {
  flex: 0 0 480px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.section-4-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 22px;
  white-space: nowrap;
}

.section-4-title .deco-l {
  font-family: var(--font-logo);
  font-size: 60px;
  line-height: 0.55;
  text-transform: none;
  display: inline-block;
  vertical-align: top;
  margin-right: -6px;
  margin-top: -10px;
  color: var(--hero-text);
}

.section-4-title .title-rest,
.section-4-title .title-line-2 {
  letter-spacing: 3px;
}

.section-4-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--hero-text);
  margin-bottom: 80px;
}

.section-4-sub {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 12px;
}

.section-4-subdesc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--hero-text);
  margin-bottom: 40px;
}

.section-4-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--hero-text);
  text-decoration: none;
  padding: 10px 30px;
  border: 1px solid var(--hero-text);
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.section-4-cta:hover {
  background: var(--hero-text);
  color: var(--coffee);
}

.section-4-scroller {
  flex: 1;
  display: flex;
  gap: 35px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 100px 30px 0;
  scrollbar-width: none;
}

.section-4-scroller::-webkit-scrollbar {
  display: none;
}

.ambiance-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: transparent;
}

.ambiance-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.ambiance-card:hover img {
  transform: scale(1.02);
}

.ambiance-card h3 {
  position: relative;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--hero-text);
  text-align: center;
  padding-bottom: 8px;
}

.ambiance-card:first-child h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: var(--hero-text);
}

.section-4-pagination {
  position: absolute;
  right: 60px;
  bottom: 50px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--hero-text);
  letter-spacing: 2px;
}

.section-5 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 80px 100px;
}

.section-5-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.section-5-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 22, 12, 0.15);
  z-index: 1;
}

.section-5-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hero-text);
  display: inline-flex;
  align-items: center;
}

.section-5-title .deco-b {
  font-family: var(--font-logo);
  font-size: 100px;
  line-height: 0.6;
  text-transform: none;
  margin-right: -2px;
  color: var(--hero-text);
}

.section-5-title .title-rest {
  letter-spacing: 4px;
}

.section-5-info {
  position: absolute;
  right: 100px;
  top: 190px;
  z-index: 2;
  max-width: 360px;
  color: var(--hero-text);
}

.section-5-info h3 {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-5-info p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.section-5-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hero-text);
  text-decoration: none;
  padding: 8px 26px;
  border: 1px solid var(--hero-text);
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.section-5-cta:hover {
  background: var(--hero-text);
  color: var(--coffee);
}

.section-6 {
  padding: 90px 80px 100px;
  background: var(--cream);
  text-align: center;
}

.section-6-title {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coffee);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.section-6-title .deco-e {
  font-family: var(--font-logo);
  font-size: 120px;
  line-height: 0.55;
  text-transform: none;
  margin-right: -10px;
  margin-top: -8px;
  color: var(--coffee);
}

.section-6-title .title-rest {
  letter-spacing: 3px;
}

.section-6-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--coffee);
  margin-bottom: 60px;
}

.family-grid {
  display: flex;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  height: 470px;
}

.family-card.animate-stagger {
  transition: flex 0.7s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.8s ease, transform 0.8s ease;
}

.family-card {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.family-card.active,
.family-card:hover {
  flex: 1.25;
}

.family-grid:hover .family-card.active:not(:hover) {
  flex: 1;
}

.family-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.family-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 14px 16px 14px 18px;
  background: rgba(69, 40, 22, 0.95);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.family-card.active .family-overlay,
.family-card:hover .family-overlay {
  transform: translateY(0);
  pointer-events: auto;
}

.family-card.active .family-overlay,
.family-card:hover .family-overlay {
  opacity: 1;
  transform: translateY(0);
}

.family-grid:hover .family-card.active:not(:hover) .family-overlay {
  opacity: 0;
  transform: translateY(20px);
  transition-delay: 0s;
}

.family-overlay h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 6px;
}

.family-overlay p {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--hero-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.family-overlay button {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 300;
  background: transparent;
  color: var(--hero-text);
  border: 1px solid var(--hero-text);
  border-radius: 3px;
  padding: 5px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.family-overlay button:hover {
  background: var(--hero-text);
  color: var(--coffee);
}

.section-7 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 90px 100px 140px;
  text-align: left;
}

.section-7-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.section-7-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 22, 12, 0.25);
  z-index: 1;
}

.section-7-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.section-7-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hero-text);
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.section-7-title .deco-l-s7 {
  font-family: var(--font-logo);
  font-size: 100px;
  line-height: 0.55;
  text-transform: none;
  margin-left: -10px;
  margin-right: -2px;
  margin-top: -16px;
  color: var(--hero-text);
}

.section-7-title .title-rest {
  letter-spacing: 3px;
}

.section-7-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--hero-text);
  margin-bottom: 140px;
}

.timeline-display {
  max-width: 600px;
}

.timeline-display h3 {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 18px;
}

.timeline-display p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--hero-text);
  margin-bottom: 32px;
}

.timeline-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hero-text);
  text-decoration: none;
  padding: 7px 22px;
  border: 1px solid var(--hero-text);
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.timeline-cta:hover {
  background: var(--hero-text);
  color: var(--coffee);
}

.timeline {
  position: absolute;
  left: 100px;
  right: 100px;
  bottom: 35px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-nav {
  display: none;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(236, 236, 236, 0.5);
  z-index: 0;
}

.timeline-dot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  background: transparent;
  border: none;
  color: var(--hero-text);
  cursor: pointer;
  z-index: 1;
  padding: 0;
}

.timeline-dot .dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hero-text);
  transition: transform 0.3s ease;
}

.timeline-dot .dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid var(--hero-text);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.timeline-dot.active .dot::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: pulseRing 2.5s ease-in-out infinite;
}

.timeline-dot:not(.active):hover .dot::before {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1);
}

.timeline-dot .num {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--hero-text);
  letter-spacing: 1px;
}

@keyframes pulseRing {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(236, 236, 236, 0.55);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(236, 236, 236, 0);
  }
}

.footer {
  background: rgba(115, 65, 32, 1);
  padding: 55px 80px 50px;
  color: var(--hero-text);
}

.footer-newsletter {
  margin-bottom: 50px;
}

.newsletter-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--hero-text);
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.newsletter-form input {
  flex: 0 0 340px;
  background: transparent;
  border: 1px solid var(--hero-text);
  border-radius: 5px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--hero-text);
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--hero-text);
  opacity: 0.8;
}

.newsletter-form button {
  background: transparent;
  border: 1px solid var(--hero-text);
  border-radius: 5px;
  padding: 8px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--hero-text);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--hero-text);
  color: var(--coffee);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.6fr;
  gap: 30px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 16px;
  min-height: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 5px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--hero-text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-200 {
  transition-delay: 200ms;
}

.animate-stagger {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: calc(var(--i) * 120ms);
}

.animate-stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px 0;
    gap: 0;
  }

  .header-icon {
    width: 48px;
    height: 48px;
  }

  .header-icon img {
    width: 45px;
    height: 45px;
  }

  .header-center {
    order: 1;
    align-items: flex-start;
  }

  .header-icon-right {
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }

  .header-icon-left {
    order: 3;
  }

  .logo {
    font-size: 42px;
  }

  .nav {
    display: none;
  }

  .hero-content {
    bottom: 28%;
    padding: 0 24px;
  }

  .hero-title {
    font-size: 26px;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
  }

  .hero-cta {
    font-size: 12px;
    padding: 6px 18px;
  }

  .slogan-bar {
    padding: 14px 16px;
  }

  .slogan-bar p {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .section-2 {
    padding: 80px 24px 80px;
    min-height: auto;
  }

  .section-2-content {
    max-width: 100%;
  }

  .quote-block {
    padding: 0 30px;
  }

  .quote-mark {
    font-size: 70px;
  }

  .quote-open {
    top: -25px;
    left: 0;
  }

  .quote-close {
    bottom: -55px;
    right: 0;
  }

  .section-2-quote {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 1px;
    white-space: normal;
  }

  .section-2-quote .quote-line {
    display: inline;
  }

  .section-2-quote .deco-s {
    font-size: 52px;
    margin: 0 -2px;
  }

  .section-2-signature {
    width: 220px;
    margin-top: 60px;
  }

  .section-4 {
    flex-direction: column;
    padding: 60px 0 60px;
    gap: 30px;
    align-items: stretch;
  }

  .section-4-left {
    display: contents;
  }

  .section-4-title { order: 1; padding: 0 24px; }
  .section-4-desc { order: 2; padding: 0 24px; }
  .section-4-scroller { order: 3; }
  .section-4-sub { order: 4; padding: 0 24px; }
  .section-4-subdesc { order: 5; padding: 0 24px; }
  .section-4-cta { order: 6; align-self: center; }

  .section-4-title {
    font-size: 22px;
    letter-spacing: 2px;
    justify-content: center;
    margin-bottom: 14px;
  }

  .section-4-title .deco-l {
    font-size: 50px;
    margin-left: -6px;
    margin-top: -8px;
  }

  .section-4-desc {
    font-size: 13px;
    margin-bottom: 0;
  }

  .section-4-scroller {
    padding: 30px 24px 10px 24px;
    gap: 16px;
    position: relative;
  }

  .section-4-scroller::after {
    content: '›';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 300;
    color: var(--hero-text);
    pointer-events: none;
    z-index: 2;
  }

  .ambiance-card {
    flex: 0 0 calc(100vw - 80px);
    scroll-snap-align: center;
  }

  .ambiance-card img {
    height: calc(100vw - 80px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .ambiance-card h3 {
    font-size: 13px;
    padding-bottom: 6px;
  }

  .ambiance-card:first-child h3::after {
    width: 80%;
  }

  .section-4-sub {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .section-4-subdesc {
    font-size: 12px;
    text-align: center;
    margin-bottom: 24px;
  }

  .section-4-left,
  .section-4-cta {
    text-align: center;
  }

  .section-4-cta {
    display: inline-block;
    padding: 8px 24px;
    font-size: 12px;
    border-radius: 22px;
  }

  .section-4-pagination {
    display: none;
  }

  .section-5 {
    padding: 70px 24px 60px;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-5-title {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 34px;
    letter-spacing: 3px;
    margin-bottom: 0;
  }

  .section-5-title .deco-b {
    font-size: 90px;
    margin-right: -2px;
    margin-top: -10px;
  }

  .section-5-info {
    position: static;
    transform: none;
    margin-top: auto;
    max-width: 100%;
    text-align: center;
    padding-bottom: 10px;
  }

  .section-5-info h3 {
    display: none;
  }

  .section-5-info p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .section-5-cta {
    font-size: 12px;
    padding: 9px 32px;
    border-radius: 22px;
  }

  .section-3 {
    padding: 70px 24px;
  }

  .section-3-image {
    max-width: 100%;
  }

  .section-3-title {
    display: block;
    margin-top: 22px;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1.35;
    text-align: center;
  }

  .section-3-title .deco-c {
    display: inline;
    font-size: 36px;
    line-height: inherit;
    vertical-align: -0.05em;
    margin: 0;
  }

  .section-3-title .title-rest {
    display: inline;
    word-spacing: 999px;
  }

  .section-3-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 20px;
    padding: 0 8px;
  }

  .section-3-cta {
    margin-top: 28px;
    font-size: 12px;
    padding: 9px 26px;
    border-radius: 22px;
  }

  .section-6 {
    padding: 60px 0 60px;
  }

  .section-6-title {
    font-size: 22px;
    letter-spacing: 2px;
    padding: 0 24px;
    display: block;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .section-6-title .deco-e {
    display: inline;
    font-size: 38px;
    line-height: inherit;
    vertical-align: -0.05em;
    margin: 0;
  }

  .section-6-title .title-rest {
    display: inline;
  }

  .section-6-subtitle {
    font-size: 13px;
    padding: 0 24px;
    margin-bottom: 40px;
  }

  .family-grid {
    display: flex;
    flex-direction: row;
    height: auto;
    gap: 12px;
    max-width: 100%;
    padding: 0 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
  }

  .family-grid::-webkit-scrollbar {
    display: none;
  }

  .family-card {
    flex: 0 0 78vw !important;
    height: 500px;
    scroll-snap-align: center;
  }

  .family-card.animate-stagger {
    transition: none;
  }

  .family-card.active,
  .family-card:hover {
    flex: 0 0 78vw !important;
  }

  .family-grid:hover .family-card.active:not(:hover) {
    flex: 0 0 78vw !important;
  }

  .family-overlay {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .family-overlay h3 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .family-overlay p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .family-overlay button {
    font-size: 11px;
    padding: 6px 18px;
    border-radius: 18px;
  }

  .section-7 {
    padding: 70px 24px 30px;
    min-height: auto;
    text-align: center;
  }

  .section-7-content {
    max-width: 100%;
    text-align: center;
  }

  .section-7-title {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .section-7-title .deco-l-s7 {
    font-size: 64px;
    margin-left: -6px;
    margin-right: -2px;
    margin-top: -8px;
  }

  .section-7-subtitle {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 50px;
  }

  .timeline-display {
    max-width: 100%;
    text-align: center;
  }

  .timeline-display h3 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .timeline-display p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .timeline-cta {
    margin-top: 40px;
    font-size: 11px;
    padding: 7px 22px;
    border-radius: 22px;
  }

  .timeline {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 50px 0 25px;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .timeline-line {
    top: 8px;
    left: 0;
    right: 0;
  }

  .timeline-dot {
    display: none;
    gap: 18px;
  }

  .timeline-dot.active {
    display: flex;
  }

  .timeline-dot .num {
    font-size: 14px;
  }

  .timeline-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--hero-text);
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    padding: 0 6px;
    z-index: 2;
  }

  .timeline-prev {
    margin-right: auto;
  }

  .timeline-next {
    margin-left: auto;
  }

  .section-7 .timeline-display {
    order: 1;
  }

  .footer {
    padding: 40px 24px 30px;
  }

  .footer-newsletter {
    margin-bottom: 30px;
  }

  .newsletter-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .newsletter-form {
    display: flex;
    flex-direction: row;
    gap: 6px;
  }

  .newsletter-form input {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 11px;
    padding: 7px 14px;
    border-radius: 18px;
  }

  .newsletter-form button {
    flex: 0 0 auto;
    font-size: 11px;
    padding: 7px 16px;
    border-radius: 18px;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-col {
    border-bottom: 1px solid rgba(236, 236, 236, 0.15);
    padding: 0;
  }

  .footer-col h4 {
    position: relative;
    margin-bottom: 0;
    padding: 18px 0;
    min-height: auto;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .footer-col h4::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 300;
  }

  .footer-col.open h4::after {
    content: '−';
  }

  .footer-col ul {
    display: none;
    overflow: hidden;
  }

  .footer-col.open ul {
    display: block;
    padding-bottom: 16px;
  }

  .footer-col a {
    font-size: 12px;
  }
}

