@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

:root {
  /* Colors */
  --surface: #fbf9f8;
  --surface-dim: #dcd9d9;
  --surface-bright: #fbf9f8;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f6f3f3;
  --surface-container: #f0eded;
  --surface-container-high: #eae7e7;
  --surface-container-highest: #e4e2e2;
  --on-surface: #1b1c1c;
  --on-surface-variant: #44474b;
  --inverse-surface: #303030;
  --inverse-on-surface: #f3f0f0;
  --outline: #74777c;
  --outline-variant: #c4c6cb;
  --surface-tint: #55606b;

  --primary: #000000;
  --on-primary: #ffffff;
  --primary-container: #121d26;
  --on-primary-container: #7a8591;
  --inverse-primary: #bcc8d5;

  --secondary: #5b5f64;
  --on-secondary: #ffffff;
  --secondary-container: #dce0e6;
  --on-secondary-container: #5f6369;

  --tertiary: #000000;
  --on-tertiary: #ffffff;
  --tertiary-container: #291710;
  --on-tertiary-container: #9b7d74;

  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;

  /* Brand Specific from design */
  --slate-mineral: #6d7884;
  --industrial-grey: #73777d;
  --obsidian: #130502;
  --brand-gold: #ffbb16;
  --whatsapp-green: #25D366;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --space-base: 8px;
  --space-gutter: 24px;
  --space-margin-mobile: 20px;
  --space-margin-desktop: 80px;
  --space-section-gap: 120px;

  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius-DEFAULT: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-organic: 0 20px 40px -15px rgba(19, 5, 2, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  min-height: max(884px, 100dvh);
  line-height: 1.5;
}

::selection {
  background-color: var(--primary);
  color: var(--on-primary);
}

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

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

/* Typography Utilities */
.display-lg {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.02em;
}

.headline-lg {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.headline-sm {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.body-lg {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.body-md {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.label-lg {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-md {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--space-margin-mobile);
  padding-right: var(--space-margin-mobile);
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-margin-desktop);
    padding-right: var(--space-margin-desktop);
  }
}

.section {
  padding-top: var(--space-section-gap);
  padding-bottom: var(--space-section-gap);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

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

.items-start {
  align-items: flex-start;
}

.grid {
  display: grid;
}

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

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

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:w-1\/2 {
    width: 50%;
  }
}

/* Material Icons */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Animation Utilities */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

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

@keyframes pulse-slow {

  0%,
  100% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1);
  }
}

.animate-pulse-slow {
  animation: pulse-slow 8s ease-in-out infinite;
}

/* Components */
.btn {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--on-secondary);
  box-shadow: var(--shadow-organic);
}

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

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

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

.btn-gold {
  background-color: var(--brand-gold);
  color: var(--primary);
}

.btn-gold:hover {
  filter: brightness(1.1);
}

/* Specific Sections */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-margin-mobile);
  padding-bottom: 6rem;
  overflow: hidden;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}



.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(19, 5, 2, 0.3), rgba(19, 5, 2, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 32rem;
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
}

.header-logo {
  position: absolute;
  top: 0;
  left: var(--space-margin-mobile);
  height: 8rem;
  object-fit: contain;
  z-index: 50;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
  .header-logo {
    height: 10rem;
  }
}

.bg-surface-container-low {
  background-color: var(--surface-container-low);
}

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

/* About Section */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background-color: rgba(91, 95, 100, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box .material-symbols-outlined {
  color: var(--secondary);
  font-size: 1.5rem;
}

/* Cards */
.card {
  background-color: var(--surface-container-lowest);
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-image-wrap {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--surface-container);
}

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

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

.badge {
  background-color: rgba(91, 95, 100, 0.05);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 10px;
}

/* Gallery */
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-tall {
  aspect-ratio: 3/4;
}

/* Contact Form */
.form-wrap {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.form-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-bottom-color: var(--brand-gold);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--on-primary);
  padding: 2.5rem var(--space-margin-mobile);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  margin: 0 1rem;
}

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

/* FAB */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--whatsapp-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 50;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease;
}

.fab:hover {
  transform: scale(1.1);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Utilities */
.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-on-surface-variant {
  color: var(--on-surface-variant);
}

.text-brand-gold {
  color: var(--brand-gold);
}

.text-white {
  color: white;
}

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

.uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-12 {
  margin-top: 3rem;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

@media (min-width: 768px) {
  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:text-left {
    text-align: left;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-content {
  background-color: var(--surface-container-lowest);
  padding: 2rem;
  border-radius: var(--radius-xl);
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-organic);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--on-surface);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary);
}

.pricing-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--outline-variant);
}

.pricing-table th {
  background-color: var(--surface-container);
  font-weight: 600;
  color: var(--primary);
}

.pricing-table tr:hover {
  background-color: var(--surface-container-low);
}

.pricing-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.pricing-details {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: var(--surface-container-low);
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.6;
}

.pricing-details h4 {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.pricing-details ul {
  margin: 0;
  padding-left: 1.5rem;
}

.pricing-details li {
  margin-bottom: 0.25rem;
  color: var(--on-surface-variant);
}