:root {
  /* Colors */
  --color-primary: #C5A267;
  /* Elegant luxury gold/beige */
  --color-primary-dark: #A68448;
  --color-bg-dark: #1A1816;
  /* Deep brownish black */
  --color-bg-light: #FAF7F2;
  /* Warm beige */
  --color-white: #FFFFFF;
  --color-text-main: #33312E;
  --color-text-light: #7A7265;

  /* Fonts */
  --font-heading: 'Pinyon Script', cursive;
  --font-body: 'Montserrat', sans-serif;
  --font-secondary: 'Noto Serif', serif;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

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

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
.title-kugile {
  font-weight: 400;
  line-height: 1.2;
}

.title-kugile {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 7rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.secondary-text {
  font-family: var(--font-secondary);
  font-weight: 300;
  color: var(--color-text-light);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.bg-light {
  background-color: var(--color-bg-light);
}

.w-100 {
  width: 100%;
}

.divider {
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 1.5rem auto 2.5rem;
}

.divider.left {
  margin: 1.5rem 0 2.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-text {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Buttons */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  /* Touch-friendly minimum height */
  min-height: 48px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(197, 162, 103, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 162, 103, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(26, 24, 22, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-primary);
  transition: width var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--color-primary);
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  /* Touch-friendly tap target */
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 24, 22, 0.4) 0%, rgba(26, 24, 22, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  padding: 0 2rem;
  color: var(--color-white);
  max-width: 800px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-logo {
  height: 42px;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  animation: logoFadeScale 1.5s ease-out cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-logo {
  height: 96px;
  margin: 0 auto;
}

.hero-logo-wrapper svg {
  height: 96px;
  width: auto;
  fill: var(--color-primary);
}

.footer-logo {
  height: 36px;
}

@keyframes logoFadeScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}

/* About Grid — Editorial Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Base Card */
.about-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
}

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

.about-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Gradient Overlay */
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.7) 0%, rgba(26, 24, 22, 0.15) 50%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.about-card:hover .card-img-overlay {
  opacity: 0.85;
}

/* ---- Featured Card (large, left) ---- */
.about-card--featured {
  display: flex;
  flex-direction: column;
}

.about-card--featured .card-img-wrapper {
  height: 100%;
  min-height: 480px;
}

.about-card--featured .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  text-align: left;
  z-index: 2;
}

.about-card--featured .card-content h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.about-card--featured .card-content p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ---- Compact Cards (smaller, right) ---- */
.about-card--compact {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-card--compact .card-img-wrapper {
  height: 200px;
}

.about-card--compact .card-content {
  padding: 1.5rem 1.75rem;
  text-align: left;
  background-color: var(--color-white);
}

.about-card--compact .card-content h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.about-card--compact .card-content p {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Menu Preview */
.menu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.menu-content {
  padding-right: 2rem;
}

.menu-content .section-title {
  text-align: left;
}

.menu-text p {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.menu-highlights {
  list-style: none;
  margin: 2rem 0;
}

.menu-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.menu-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.8rem;
  top: 3px;
}

.menu-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 600px;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.menu-image:hover img {
  transform: scale(1.03);
}

/* Contact Form */
.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 3.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.half {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E5E0D8;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  transition: all var(--transition-smooth);
  /* Touch-friendly minimum height */
  min-height: 48px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(197, 162, 103, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: #B5B0A8;
  font-style: italic;
}

/* Map wrapper */
.map-wrapper {
  max-width: 800px;
  margin: 3rem auto 0;
  background-color: var(--color-white);
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  filter: grayscale(100%) sepia(30%);
  pointer-events: auto;
}

/* Footer */
.footer {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer .logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.footer-links a {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-family: var(--font-secondary);
  transition: color var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  font-family: var(--font-secondary);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-short);
}

.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  transition: color var(--transition-short);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Animations & Reveal */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Desktop navigation specific styles */
@media (min-width: 993px) {
  .navbar .logo {
    display: none;
  }

  .nav-content {
    justify-content: center;
  }
}

/* Tablet landscape / small laptop */
@media (max-width: 992px) {
  .section {
    padding: 5rem 0;
  }

  .section-header {
    margin: 0 auto 3rem;
  }

  .hero-logo {
    height: 70px;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .about-card--featured .card-img-wrapper {
    min-height: 380px;
  }

  .menu-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-content {
    padding-right: 0;
    text-align: center;
  }

  .menu-content .section-title {
    text-align: center;
  }

  .divider.left {
    margin: 1.5rem auto 2.5rem;
  }

  .menu-image {
    height: 400px;
  }

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

/* Tablet portrait / large mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin: 0 auto 2.5rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
  }

  .nav-logo {
    height: 30px;
  }

  /* Mobile navigation */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(26, 24, 22, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
    gap: 2rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* About grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .about-card {
    max-width: 100%;
  }

  .about-card--featured .card-img-wrapper {
    min-height: 320px;
  }

  .about-card--featured .card-content {
    padding: 2rem;
  }

  .about-card--featured .card-content h3 {
    font-size: 1.4rem;
  }

  .about-card--compact .card-img-wrapper {
    height: 190px;
  }

  .about-card--compact .card-content {
    padding: 1.25rem 1.5rem;
  }

  /* Menu preview */
  .menu-image {
    height: 320px;
  }

  .menu-text p {
    font-size: 1rem;
  }

  /* Contact form */
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .map-wrapper {
    height: 280px;
    margin-top: 2rem;
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title-kugile {
    font-size: 3.5rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .section-header {
    margin: 0 auto 2rem;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Hero */
  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-logo {
    height: 44px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
  }

  .btn-primary,
  .btn-outline {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }

  /* About */
  .about-card--featured .card-img-wrapper {
    min-height: 260px;
  }

  .about-card--featured .card-content {
    padding: 1.5rem;
  }

  .about-card--featured .card-content h3 {
    font-size: 1.2rem;
  }

  .about-card--featured .card-content p {
    font-size: 0.9rem;
  }

  .about-card--compact .card-img-wrapper {
    height: 170px;
  }

  .about-card--compact .card-content {
    padding: 1rem 1.25rem;
  }

  .about-card--compact .card-content h3 {
    font-size: 1.1rem;
  }

  .about-card--compact .card-content p {
    font-size: 0.85rem;
  }

  /* Menu preview */
  .menu-image {
    height: 260px;
  }

  .menu-text p {
    font-size: 0.95rem;
  }

  .menu-highlights li {
    font-size: 0.9rem;
  }

  /* Contact form */
  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .map-wrapper {
    height: 220px;
    margin-top: 1.5rem;
    padding: 0.35rem;
  }

  label {
    font-size: 0.8rem;
  }

  input,
  textarea {
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer h4 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

}

/* ============================================
   RESERVATIONS & ALERTS
   ============================================ */
.form-select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E5E0D8;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  transition: all var(--transition-smooth);
  min-height: 48px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C5A267%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 0.65rem auto;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(197, 162, 103, 0.1);
}

.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  text-align: center;
}

.alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.alert-error {
  background-color: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

/* ============================================
   COMING SOON — sajt u pripremi
   ============================================ */

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--color-white);
  font-weight: 400;
  margin: 1rem 0 0;
  letter-spacing: 2px;
  opacity: 0.9;
}

.coming-soon-divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-primary);
  margin: 1.5rem auto 2rem;
  opacity: 0.7;
}

.coming-soon-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.coming-soon-label {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.coming-soon-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.coming-soon-address {
  margin: 0;
}

.coming-soon-separator {
  color: var(--color-primary);
  font-size: 1.2rem;
  line-height: 1;
}

.coming-soon-link,
a.coming-soon-link {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  letter-spacing: 0.5px !important;
  transition: color var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.coming-soon-link:hover,
a.coming-soon-link:hover {
  color: var(--color-primary) !important;
}

.coming-soon-link:visited,
a.coming-soon-link:visited {
  color: rgba(255, 255, 255, 0.85) !important;
}

.coming-soon-icon {
  color: var(--color-primary);
  font-size: 0.85rem;
  line-height: 1;
}

@media (max-width: 480px) {
  .coming-soon-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .coming-soon-info {
    flex-direction: column;
    gap: 0.6rem;
  }

  .coming-soon-separator {
    display: none;
  }

  .coming-soon-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .coming-soon-link {
    font-size: 0.85rem;
  }
}