 :root {
   --black: #070605;
   --gold: #c7a04a;
   --cream: #f4ead7;
   --dark-brown: #21160f;
   --soft-white: #fffaf1;
   --muted: #bfb4a3;
   --line: rgba(199, 160, 74, 0.28);
   --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
   --max-width: 1180px;
 }

 * {
   box-sizing: border-box;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--dark-brown);
   background: var(--soft-white);
   line-height: 1.7;
 }

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

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

 p {
   margin: 0 0 1.1rem;
 }

 h1,
 h2,
 h3,
 h4,
 .brand-text {
   font-family: Georgia, "Times New Roman", serif;
   font-weight: 500;
   line-height: 1.05;
 }

 h1 {
   font-size: clamp(2.25rem, 6vw, 5.7rem);
   letter-spacing: -0.06em;
   margin: 0 0 1.1rem;
 }

 h2 {
   font-size: clamp(1.8rem, 4vw, 3.4rem);
   letter-spacing: -0.045em;
   margin: 0 0 1rem;
 }

 h3 {
   font-size: 1.12rem;
   margin: 0 0 0.75rem;
 }

 h4 {
   font-size: 0.98rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   margin: 0 0 0.55rem;
 }

 ul {
   padding-left: 1.2rem;
 }

 .skip-link {
   position: absolute;
   top: -100px;
   left: 1rem;
   z-index: 9999;
   background: var(--gold);
   color: var(--black);
   padding: 0.75rem 1rem;
   border-radius: 999px;
 }

 .skip-link:focus {
   top: 1rem;
 }

 .site-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   color: var(--soft-white);
   transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
   border-bottom: 1px solid rgba(244, 234, 215, 0.13);
 }

 .site-header.scrolled {
   background: rgba(7, 6, 5, 0.92);
   backdrop-filter: blur(18px);
   border-color: var(--line);
 }

 .top-notice {
   font-size: 0.72rem;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   text-align: center;
   padding: 0.45rem 1rem;
   color: var(--cream);
   background: rgba(7, 6, 5, 0.55);
 }

 .nav-wrap {
   max-width: 1440px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem clamp(1rem, 4vw, 3.4rem);
   gap: 1.2rem;
 }

 .brand {
   display: inline-flex;
   align-items: center;
   gap: 0.8rem;
   color: var(--soft-white);
 }

 .brand-mark {
   width: 44px;
   height: 44px;
   border: 1px solid var(--gold);
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: var(--gold);
   font-family: Georgia, "Times New Roman", serif;
   font-size: 0.78rem;
   letter-spacing: 0.12em;
 }

 .brand-text {
   font-size: clamp(1rem, 2vw, 1.35rem);
   letter-spacing: 0.02em;
 }

 .main-nav {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: clamp(0.6rem, 1.1vw, 1.35rem);
   font-size: 0.78rem;
   letter-spacing: 0.09em;
   text-transform: uppercase;
 }

 .nav-link {
   position: relative;
   color: rgba(255, 250, 241, 0.82);
   transition: color 0.3s ease;
   white-space: nowrap;
 }

 .nav-link::after {
   content: "";
   position: absolute;
   left: 0;
   right: 0;
   bottom: -0.45rem;
   height: 1px;
   transform: scaleX(0);
   transform-origin: left;
   background: var(--gold);
   transition: transform 0.3s ease;
 }

 .nav-link:hover,
 .nav-link.active {
   color: var(--gold);
 }

 .nav-link:hover::after,
 .nav-link.active::after {
   transform: scaleX(1);
 }

 .nav-toggle {
   display: none;
   width: 44px;
   height: 44px;
   border: 1px solid var(--line);
   background: rgba(7, 6, 5, 0.25);
   border-radius: 50%;
   cursor: pointer;
   padding: 0.65rem;
 }

 .nav-toggle span {
   display: block;
   height: 1px;
   background: var(--cream);
   margin: 6px 0;
   transition: transform 0.3s ease, opacity 0.3s ease;
 }

 .nav-toggle.active span:nth-child(1) {
   transform: translateY(7px) rotate(45deg);
 }

 .nav-toggle.active span:nth-child(2) {
   opacity: 0;
 }

 .nav-toggle.active span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg);
 }

 .hero {
   position: relative;
   min-height: 72vh;
   display: grid;
   align-items: center;
   overflow: hidden;
   color: var(--soft-white);
   background-size: cover;
   background-position: center;
   isolation: isolate;
 }

 .full-hero {
   min-height: 100vh;
 }

 .page-hero {
   padding-top: 8.5rem;
 }

 .hero-home {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.85), rgba(7, 6, 5, 0.38)), url("../img/hero.jpeg");
 }

 .hero-about {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.86), rgba(7, 6, 5, 0.28)), url("../img/hero.jpeg");
 }

 .hero-aurum {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.86), rgba(7, 6, 5, 0.25)), url("../img/hotel1.jpeg");
 }

 .hero-southern {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.88), rgba(7, 6, 5, 0.25)), url("../img/hotel2.jpeg");
 }

 .hero-harbour {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.88), rgba(7, 6, 5, 0.24)), url("../img/hotel3.jpeg");
 }

 .hero-contact {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.87), rgba(7, 6, 5, 0.28)), url("../img/hero.jpeg");
 }

 .evenings-bg {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.92), rgba(7, 6, 5, 0.58)), url("../img/hero.jpeg");
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
 }

 .hero-overlay {
   position: absolute;
   inset: 0;
   background: radial-gradient(circle at 70% 20%, rgba(199, 160, 74, 0.28), transparent 32%), linear-gradient(0deg, rgba(7, 6, 5, 0.68), transparent 55%);
   z-index: -1;
 }

 .hero-content {
   width: min(1120px, calc(100% - 2rem));
   margin: 0 auto;
   padding: 9rem 0 4rem;
 }

 .hero-content p {
   max-width: 760px;
 }

 .hero-subtitle {
   font-size: clamp(1.05rem, 2.2vw, 1.5rem);
   color: rgba(255, 250, 241, 0.86);
 }

 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   margin-top: 2rem;
 }

 .hero-scroll-note {
   position: absolute;
   left: 50%;
   bottom: 1.4rem;
   transform: translateX(-50%);
   color: rgba(255, 250, 241, 0.75);
   font-size: 0.75rem;
   letter-spacing: 0.18em;
   text-transform: uppercase;
 }

 .eyebrow {
   color: var(--gold);
   letter-spacing: 0.18em;
   text-transform: uppercase;
   font-size: 0.78rem;
   font-weight: 700;
 }

 .section {
   padding: clamp(4.8rem, 8vw, 8rem) clamp(1rem, 4vw, 3rem);
 }

 .split-section {
   max-width: var(--max-width);
   margin: 0 auto;
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   gap: clamp(2rem, 5vw, 5rem);
   align-items: center;
 }

 .section-copy {
   max-width: 620px;
 }

 .section-image {
   position: relative;
   overflow: hidden;
   border-radius: 2px;
   box-shadow: var(--shadow);
 }

 .section-image::after,
 .hotel-card::after,
 .gallery-item::after {
   content: "";
   position: absolute;
   inset: 0;
   border: 1px solid rgba(199, 160, 74, 0.28);
   pointer-events: none;
 }

 .section-image img {
   width: 100%;
   min-height: 460px;
   object-fit: cover;
   transform: scale(1.02);
   transition: transform 1.2s ease;
 }

 .section-image:hover img,
 .hotel-card:hover img,
 .gallery-item:hover img {
   transform: scale(1.07);
 }

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

 .section-heading {
   max-width: 820px;
   margin-bottom: clamp(2rem, 5vw, 4rem);
 }

 .dark-section {
   background: var(--black);
   color: var(--soft-white);
 }

 .dark-section p,
 .dark-section li {
   color: rgba(255, 250, 241, 0.78);
 }

 .card-grid,
 .value-grid,
 .review-grid,
 .detail-columns,
 .gallery-grid,
 .contact-info-grid {
   max-width: var(--max-width);
   margin: 0 auto;
   display: grid;
   gap: 1.4rem;
 }

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

 .hotel-card {
   position: relative;
   overflow: hidden;
   background: #120f0b;
   border: 1px solid var(--line);
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
 }

 .hotel-card img {
   width: 100%;
   aspect-ratio: 4 / 3;
   object-fit: cover;
   transition: transform 1.2s ease;
 }

 .card-content {
   padding: 1.6rem;
 }

 .card-content p {
   color: rgba(255, 250, 241, 0.76);
 }

 .package-grid,
 .value-grid {
   grid-template-columns: repeat(4, minmax(0, 1fr));
 }

 .package-card,
 .value-card,
 .review-card,
 .detail-card,
 .contact-form,
 .quote-panel {
   background: rgba(255, 250, 241, 0.72);
   border: 1px solid rgba(199, 160, 74, 0.28);
   padding: clamp(1.4rem, 3vw, 2rem);
   box-shadow: 0 18px 50px rgba(33, 22, 15, 0.08);
 }

 .package-card i,
 .value-card i {
   color: var(--gold);
   font-size: 1.75rem;
   margin-bottom: 1rem;
 }

 .package-card ul,
 .detail-card ul {
   margin-bottom: 0;
 }

 .text-link {
   color: var(--gold);
   font-weight: 700;
   letter-spacing: 0.04em;
 }

 .text-link i {
   margin-left: 0.35rem;
   transition: transform 0.3s ease;
 }

 .text-link:hover i {
   transform: translateX(5px);
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 48px;
   padding: 0.85rem 1.25rem;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.78rem;
   cursor: pointer;
   transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
 }

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

 .btn-gold {
   background: var(--gold);
   color: var(--black);
   border-color: var(--gold);
 }

 .btn-gold:hover {
   background: #d8b866;
 }

 .btn-outline,
 .btn-outline-light {
   background: transparent;
   border-color: var(--gold);
   color: var(--gold);
 }

 .btn-outline-light {
   color: var(--soft-white);
   border-color: rgba(244, 234, 215, 0.6);
 }

 .btn-outline:hover,
 .btn-outline-light:hover {
   background: var(--gold);
   color: var(--black);
   border-color: var(--gold);
 }

 .btn-ghost {
   background: transparent;
   color: var(--cream);
   border-color: rgba(244, 234, 215, 0.24);
 }

 .btn-small {
   min-height: 40px;
   padding: 0.65rem 1rem;
   font-size: 0.72rem;
 }

 .luxury-section {
   padding-top: 0;
 }

 .editorial-band {
   min-height: 640px;
   display: grid;
   align-items: center;
   color: var(--soft-white);
   position: relative;
 }

 .editorial-band::before {
   content: "";
   position: absolute;
   inset: clamp(1rem, 3vw, 2rem);
   border: 1px solid rgba(199, 160, 74, 0.38);
   pointer-events: none;
 }

 .band-content {
   max-width: 820px;
   margin-left: max(1rem, calc((100vw - var(--max-width)) / 2));
   position: relative;
   z-index: 1;
 }

 .band-content p {
   color: rgba(255, 250, 241, 0.84);
 }

 .narrow-section {
   max-width: 920px;
   margin: 0 auto;
 }

 .image-grid {
   max-width: var(--max-width);
   margin: 0 auto;
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 1.3rem;
 }

 .image-grid figure,
 .gallery-item {
   position: relative;
   overflow: hidden;
   margin: 0;
   background: var(--black);
   color: var(--cream);
 }

 .image-grid img,
 .gallery-item img {
   width: 100%;
   aspect-ratio: 4 / 4.6;
   object-fit: cover;
   transition: transform 1.2s ease;
 }

 .image-grid figcaption,
 .gallery-item figcaption {
   padding: 1rem;
   font-size: 0.92rem;
   color: rgba(255, 250, 241, 0.78);
 }

 .story-section {
   padding-top: 0;
 }

 .quote-panel {
   background: var(--black);
   color: var(--soft-white);
   min-height: 360px;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .quote-mark {
   color: var(--gold);
   font-family: Georgia, "Times New Roman", serif;
   font-size: 5rem;
   line-height: 0.7;
 }

 .value-card {
   background: rgba(255, 250, 241, 0.05);
   color: var(--soft-white);
 }

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

 .review-card p {
   font-family: Georgia, "Times New Roman", serif;
   font-size: 1.1rem;
   color: var(--dark-brown);
 }

 .review-card span {
   color: var(--gold);
   letter-spacing: 0.1em;
   text-transform: uppercase;
   font-size: 0.75rem;
 }

 .hotel-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
   margin-top: 2rem;
 }

 .hotel-meta span {
   border: 1px solid rgba(244, 234, 215, 0.24);
   border-radius: 999px;
   padding: 0.65rem 0.9rem;
   color: rgba(255, 250, 241, 0.88);
   background: rgba(7, 6, 5, 0.35);
 }

 .highlight-list li::marker {
   color: var(--gold);
 }

 .notice-box {
   margin-top: 1.5rem;
   border-left: 3px solid var(--gold);
   background: rgba(199, 160, 74, 0.08);
   padding: 1rem 1.2rem;
 }

 .detail-columns {
   grid-template-columns: repeat(5, minmax(0, 1fr));
   align-items: stretch;
 }

 .gallery-grid {
   grid-template-columns: repeat(3, minmax(0, 1fr));
   margin-top: 2rem;
 }

 .contact-block {
   max-width: var(--max-width);
   margin: 0 auto;
   display: grid;
   grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
   gap: 1.6rem;
   align-items: stretch;
   background: var(--black);
   color: var(--soft-white);
   border: 1px solid var(--line);
   padding: clamp(1.4rem, 4vw, 2.4rem);
 }

 .contact-block a,
 .site-footer a,
 .contact-list a {
   color: var(--gold);
 }

 .small-note {
   color: var(--muted);
   font-size: 0.92rem;
 }

 .map-wrap {
   min-height: 340px;
   background: var(--dark-brown);
   border: 1px solid var(--line);
 }

 .map-wrap iframe {
   width: 100%;
   height: 100%;
   min-height: 340px;
   border: 0;
   filter: grayscale(0.2) contrast(1.02);
 }

 .contact-info-grid {
   grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
   align-items: start;
 }

 .contact-list {
   margin-top: 1.5rem;
   border-top: 1px solid rgba(199, 160, 74, 0.25);
   padding-top: 1.5rem;
 }

 .contact-list i {
   color: var(--gold);
   width: 1.3rem;
 }

 .contact-form {
   background: var(--black);
   color: var(--soft-white);
 }

 .form-field {
   margin-bottom: 1rem;
 }

 label {
   display: block;
   margin-bottom: 0.4rem;
   color: var(--cream);
   font-weight: 700;
 }

 input,
 select,
 textarea {
   width: 100%;
   border: 1px solid rgba(199, 160, 74, 0.35);
   background: rgba(255, 250, 241, 0.06);
   color: var(--soft-white);
   padding: 0.95rem 1rem;
   border-radius: 0;
   outline: none;
   font: inherit;
   transition: border-color 0.25s ease, background 0.25s ease;
 }

 select option {
   color: var(--black);
 }

 input:focus,
 select:focus,
 textarea:focus {
   border-color: var(--gold);
   background: rgba(255, 250, 241, 0.1);
 }

 .checkbox-field {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
   margin: 0.6rem 0;
 }

 .checkbox-field input {
   width: auto;
   margin-top: 0.35rem;
 }

 .error-message {
   display: block;
   min-height: 1.1rem;
   color: #ffd0c6;
   font-size: 0.82rem;
   margin-top: 0.25rem;
 }

 .form-field.invalid input,
 .form-field.invalid select,
 .form-field.invalid textarea {
   border-color: #f2a391;
 }

 .form-status {
   margin-top: 1rem;
   padding: 0.9rem 1rem;
   border: 1px solid transparent;
   min-height: 0;
 }

 .form-status.success {
   border-color: rgba(199, 160, 74, 0.5);
   background: rgba(199, 160, 74, 0.12);
   color: var(--cream);
 }

 .large-map {
   max-width: var(--max-width);
   margin: 0 auto;
   min-height: 460px;
 }

 .large-map iframe {
   min-height: 460px;
 }

 .site-footer {
   background: #050403;
   color: rgba(255, 250, 241, 0.78);
   padding: 0 clamp(1rem, 4vw, 3rem) 2rem;
 }

 .footer-gold-line {
   height: 1px;
   max-width: var(--max-width);
   margin: 0 auto;
   background: linear-gradient(90deg, transparent, var(--gold), transparent);
 }

 .footer-grid {
   max-width: var(--max-width);
   margin: 0 auto;
   padding: clamp(3rem, 6vw, 5rem) 0 2rem;
   display: grid;
   grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
   gap: 2rem;
 }

 .footer-brand {
   margin-bottom: 1rem;
 }

 .footer-domain {
   color: var(--cream);
 }

 .footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .footer-links li {
   margin-bottom: 0.5rem;
 }

 .site-footer h3 {
   color: var(--soft-white);
 }

 .age-mark {
   width: 68px;
   height: 68px;
   border: 1px solid var(--gold);
   color: var(--gold);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: Georgia, "Times New Roman", serif;
   font-size: 1.35rem;
   margin-top: 1.2rem;
 }

 .footer-bottom {
   max-width: var(--max-width);
   margin: 0 auto;
   padding-top: 1.2rem;
   border-top: 1px solid rgba(255, 250, 241, 0.12);
   display: flex;
   justify-content: space-between;
   gap: 1rem;
   flex-wrap: wrap;
   font-size: 0.9rem;
 }

 .footer-top-link {
   color: var(--gold);
 }

 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   z-index: 1100;
   max-width: 1050px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr auto;
   gap: 1rem;
   align-items: center;
   background: rgba(7, 6, 5, 0.96);
   color: var(--soft-white);
   border: 1px solid var(--line);
   padding: 1.2rem;
   box-shadow: var(--shadow);
 }

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

 .cookie-copy h3 {
   margin-bottom: 0.35rem;
 }

 .cookie-copy p {
   margin: 0;
   color: rgba(255, 250, 241, 0.76);
 }

 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
   justify-content: flex-end;
 }

 .cookie-settings {
   grid-column: 1 / -1;
   border-top: 1px solid rgba(255, 250, 241, 0.12);
   padding-top: 1rem;
 }

 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   color: var(--soft-white);
   margin-bottom: 0.8rem;
 }

 .toggle-row small {
   display: block;
   color: var(--muted);
   font-weight: 400;
 }

 .toggle-row input {
   width: auto;
 }

 .back-to-top {
   position: fixed;
   right: 1.2rem;
   bottom: 1.2rem;
   width: 46px;
   height: 46px;
   border-radius: 50%;
   border: 1px solid var(--gold);
   background: var(--black);
   color: var(--gold);
   z-index: 1001;
   cursor: pointer;
   opacity: 0;
   transform: translateY(20px);
   pointer-events: none;
   transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .back-to-top.visible {
   opacity: 1;
   transform: translateY(0);
   pointer-events: auto;
 }

 .reveal {
   opacity: 0;
   transform: translateY(34px);
   transition: opacity 0.9s ease, transform 0.9s ease;
 }

 .reveal.is-visible {
   opacity: 1;
   transform: translateY(0);
 }

 @media (max-width: 1180px) {
   .main-nav {
     position: fixed;
     inset: 95px 1rem auto 1rem;
     display: none;
     flex-direction: column;
     align-items: flex-start;
     background: rgba(7, 6, 5, 0.98);
     border: 1px solid var(--line);
     padding: 1.4rem;
     box-shadow: var(--shadow);
   }

   .main-nav.open {
     display: flex;
   }

   .nav-toggle {
     display: block;
   }

   .nav-link {
     white-space: normal;
   }
 }

 @media (max-width: 980px) {

   .split-section,
   .contact-block,
   .contact-info-grid {
     grid-template-columns: 1fr;
   }

   .reverse-on-mobile .section-copy {
     order: 2;
   }

   .reverse-on-mobile .section-image {
     order: 1;
   }

   .hotel-grid,
   .image-grid,
   .review-grid,
   .gallery-grid {
     grid-template-columns: 1fr 1fr;
   }

   .package-grid,
   .value-grid,
   .detail-columns,
   .footer-grid {
     grid-template-columns: 1fr 1fr;
   }

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

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

 @media (max-width: 680px) {
   .top-notice {
     font-size: 0.62rem;
   }

   .brand-text {
     max-width: 200px;
   }

   .hero-content {
     padding-top: 8rem;
   }

   .hero-actions,
   .cookie-actions,
   .footer-bottom {
     flex-direction: column;
     align-items: stretch;
   }

   .btn {
     width: 100%;
   }

   .hotel-grid,
   .image-grid,
   .review-grid,
   .gallery-grid,
   .package-grid,
   .value-grid,
   .detail-columns,
   .footer-grid {
     grid-template-columns: 1fr;
   }

   .section-image img {
     min-height: 320px;
   }

   .editorial-band {
     min-height: 560px;
   }

   .band-content {
     margin: 0;
   }

   .hotel-meta span {
     width: 100%;
   }

   .cookie-banner {
     left: 0.6rem;
     right: 0.6rem;
     bottom: 0.6rem;
     max-height: 80vh;
     overflow: auto;
   }

   .back-to-top {
     right: 0.8rem;
     bottom: 0.8rem;
   }
 }

 .hero-privacy {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.88), rgba(7, 6, 5, 0.3)), url("../img/hero.jpeg");
 }

 .hero-terms {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.88), rgba(7, 6, 5, 0.3)), url("../img/hero.jpeg");
 }

 .hero-responsible {
   background-image: linear-gradient(90deg, rgba(7, 6, 5, 0.9), rgba(7, 6, 5, 0.36)), url("../img/hero.jpeg");
 }

 .legal-section {
   max-width: 980px;
   margin: 0 auto;
 }

 .legal-section .legal-intro {
   font-size: 1.03rem;
   color: rgba(33, 22, 15, 0.82);
   border-left: 3px solid var(--gold);
   padding-left: 1.2rem;
   margin-bottom: 2.4rem;
 }

 .legal-article {
   display: grid;
   gap: 1.35rem;
 }

 .legal-block {
   background: rgba(255, 250, 241, 0.7);
   border: 1px solid rgba(199, 160, 74, 0.24);
   padding: clamp(1.3rem, 3vw, 2rem);
   box-shadow: 0 18px 50px rgba(33, 22, 15, 0.06);
 }

 .legal-block p:last-child,
 .legal-block ul:last-child {
   margin-bottom: 0;
 }

 .legal-block ul {
   margin-top: 0.4rem;
 }

 .legal-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 0.7rem;
   margin-top: 1.6rem;
 }

 .legal-meta span {
   border: 1px solid rgba(244, 234, 215, 0.25);
   background: rgba(7, 6, 5, 0.34);
   color: rgba(255, 250, 241, 0.86);
   border-radius: 999px;
   padding: 0.58rem 0.85rem;
 }