/* ============================================
   GLAUCIO'S BARBERSHOP — LANDING PAGE STYLES
   ============================================ */

:root {
  --black: #1a1a1a;
  --black-deep: #111111;
  --dark: #222222;
  --gold: #c49a4b;
  --gold-light: #d4ad63;
  --gold-dark: #a07e3a;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gray: #999999;
  --gray-light: #cccccc;
  --blue: #4169e1;

  --font-heading: 'Oswald', sans-serif;
  --font-script: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --container-max: 1280px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---- TORN PAPER EDGE EFFECT ---- */

.torn-edge-top,
.torn-edge-bottom {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
  z-index: 2;
}

.torn-edge-top::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(
    0% 65%, 3% 55%, 6% 70%, 10% 50%, 14% 62%, 18% 48%,
    22% 60%, 26% 45%, 30% 58%, 35% 42%, 38% 55%, 42% 38%,
    46% 52%, 50% 35%, 54% 48%, 58% 32%, 62% 45%, 66% 30%,
    70% 42%, 74% 28%, 78% 40%, 82% 25%, 86% 38%, 90% 22%,
    94% 35%, 97% 20%, 100% 30%, 100% 100%, 0% 100%
  );
  filter: drop-shadow(0 -2px 3px rgba(0,0,0,0.1));
}

.torn-edge-top--dark::before {
  background: var(--black-deep);
}

.torn-edge-top--reverse::before {
  background: var(--off-white);
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 70%,
    97% 80%, 94% 65%, 90% 78%, 86% 62%, 82% 75%, 78% 60%,
    74% 72%, 70% 58%, 66% 70%, 62% 55%, 58% 68%, 54% 52%,
    50% 65%, 46% 48%, 42% 62%, 38% 45%, 35% 58%, 30% 42%,
    26% 55%, 22% 40%, 18% 52%, 14% 38%, 10% 50%, 6% 35%,
    3% 45%, 0% 35%
  );
}

.torn-edge-bottom::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100px;
  background: var(--off-white);
  clip-path: polygon(
    0% 0%, 100% 0%, 100% 35%,
    97% 45%, 94% 30%, 90% 48%, 86% 35%, 82% 50%, 78% 38%,
    74% 55%, 70% 40%, 66% 52%, 62% 38%, 58% 50%, 54% 35%,
    50% 48%, 46% 32%, 42% 45%, 38% 28%, 35% 42%, 30% 30%,
    26% 45%, 22% 32%, 18% 48%, 14% 35%, 10% 50%, 6% 38%,
    3% 52%, 0% 40%
  );
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

/* ---- NAVIGATION ---- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-seal {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.logo-seal--large {
  width: 56px;
  height: 56px;
  font-size: 24px;
}

.logo-seal--small {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.logo-text {
  font-family: var(--font-script);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cart {
  position: relative;
  color: var(--white);
  transition: color 0.2s;
}

.nav-cart:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
}

.lang-active {
  color: var(--gold);
}

.lang-sep {
  margin: 0 4px;
}

.btn-book-nav {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  padding: 10px 24px;
  border: 1.5px solid var(--white);
  transition: all 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- MOBILE MENU ---- */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--black-deep);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-inner {
  padding: 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin-bottom: 24px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--white);
  transition: color 0.2s;
}

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

.mobile-menu-divider {
  width: 80%;
  margin: 32px auto;
  border-top: 1px dashed var(--gray);
}

.mobile-menu-info {
  text-align: center;
  color: var(--gray-light);
  font-size: 14px;
}

.mobile-menu-info h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 6px;
}

.mobile-menu-info a {
  color: var(--gold);
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  color: var(--white);
}

.btn-book-mobile {
  display: block;
  margin-top: auto;
  padding: 16px;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---- DARK TEXTURE HELPER ---- */

.dark-texture {
  position: relative;
}

.dark-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255,255,255,0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* ---- HERO ---- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: var(--off-white);
  z-index: 1;
}

.hero-scissors-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}

.hero-right-bg {
  width: 100%;
  height: 100%;
  background: var(--black-deep);
  background-image:
    radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(255,255,255,0.02) 0%, transparent 40%);
}

.hero-torn-edge {
  position: absolute;
  top: 0;
  left: 38%;
  width: 18%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.hero-torn-edge::before {
  content: '';
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  background: var(--off-white);
  clip-path: polygon(
    100% 0%, 60% 0%,
    55% 2%, 58% 4%, 52% 6%, 56% 8%, 50% 10%,
    54% 12%, 48% 14%, 53% 16%, 47% 18%, 52% 20%,
    46% 22%, 51% 24%, 45% 26%, 50% 28%, 44% 30%,
    49% 32%, 42% 34%, 48% 36%, 40% 38%, 46% 40%,
    39% 42%, 45% 44%, 38% 46%, 44% 48%, 36% 50%,
    42% 52%, 35% 54%, 41% 56%, 34% 58%, 40% 60%,
    32% 62%, 38% 64%, 30% 66%, 36% 68%, 28% 70%,
    34% 72%, 26% 74%, 32% 76%, 24% 78%, 30% 80%,
    22% 82%, 28% 84%, 20% 86%, 26% 88%, 18% 90%,
    24% 92%, 16% 94%, 22% 96%, 14% 98%, 20% 100%,
    100% 100%
  );
  filter: drop-shadow(3px 0 6px rgba(0,0,0,0.15));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--nav-height) var(--container-padding) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -3px;
  font-size: clamp(72px, 11vw, 170px);
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    var(--black) 42%,
    var(--white) 42%,
    var(--white) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: normal;
  position: relative;
}

.hero-carousel {
  position: relative;
  width: 46%;
  max-width: 560px;
  margin-left: auto;
  margin-right: 5%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-carousel-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.carousel-btn {
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: var(--white);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

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

.carousel-counter {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  padding-bottom: 60px;
}

.hero-desc {
  max-width: 380px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-signature {
  font-family: var(--font-script);
  font-size: clamp(48px, 6vw, 80px);
  font-style: italic;
  color: var(--gold);
  white-space: nowrap;
}

/* ---- ABOUT ---- */

.about {
  padding: 120px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-headline h2 {
  font-family: var(--font-script);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
}

.bracket {
  color: var(--gold);
  font-weight: 700;
}

.about-subtitle {
  font-family: var(--font-script);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-dark);
  margin-top: 16px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

/* ---- PORTFOLIO / OUR WORK ---- */

.portfolio {
  padding: 80px 0 100px;
  background: var(--off-white);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
}

.section-title--light {
  color: var(--white);
}

.btn-view-all {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 32px;
  background: var(--gold);
  color: var(--black);
  transition: all 0.3s;
}

.btn-view-all:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.portfolio-carousel {
  position: relative;
}

.portfolio-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
}

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

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

.portfolio-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* ---- SERVICES ---- */

.services {
  position: relative;
  background: var(--black-deep);
  overflow: hidden;
}

.services-inner {
  position: relative;
  display: flex;
  padding: 80px 0 80px 0;
}

.services-vertical-title {
  font-family: var(--font-heading);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 40px 24px;
  white-space: nowrap;
  letter-spacing: 4px;
  opacity: 0.9;
}

.services-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 60px 40px 20px;
  max-width: calc(var(--container-max) - 120px);
}

.service-category {
  margin-bottom: 32px;
}

.category-name {
  font-family: var(--font-script);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-name {
  color: var(--white);
  font-weight: 500;
}

.service-duration {
  color: var(--gray);
  font-size: 13px;
}

.service-price {
  color: var(--white);
  font-weight: 600;
  text-align: right;
  min-width: 60px;
}

.btn-book {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-book:hover {
  background: var(--gold-light);
}

.services-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) sepia(15%);
}

/* ---- PRODUCTS ---- */

.products {
  padding: 100px 0;
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  padding: 24px;
  border-radius: 4px;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.product-category {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-category a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.product-image img {
  max-height: 100%;
  object-fit: contain;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dark);
}

.product-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin: 12px 0 20px;
}

.btn-add-cart {
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-add-cart:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- TEAM ---- */

.team {
  position: relative;
  background: var(--black-deep);
}

.team-inner {
  padding: 60px 0 100px;
}

.team .section-title {
  margin-bottom: 48px;
}

.team-card {
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0ddd5;
}

.team-card-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

.team-card-contact {
  margin-left: auto;
  font-size: 13px;
}

.team-card-contact strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.team-card-text {
  padding: 40px;
}

.team-card-text h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-card-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 14px;
}

.team-card-text p:last-child {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-dark);
  margin-top: 20px;
}

.team-card-image {
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: filter 0.5s;
}

.team-card-image:hover img {
  filter: grayscale(20%);
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  background: var(--dark);
  padding: 100px 0;
}

.testimonials-header {
  margin-bottom: 48px;
}

.testimonials-sub {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-top: 8px;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: var(--gold);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-light);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* ---- SURF ---- */

.surf {
  position: relative;
  background: var(--off-white);
}

.surf-inner {
  position: relative;
}

.surf-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.surf-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(90%);
}

.surf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px var(--container-padding);
}

.surf-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.surf-desc {
  max-width: 420px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 32px;
}

.btn-surf {
  display: inline-block;
  padding: 16px 48px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.btn-surf:hover {
  background: #3358c4;
}

/* ---- GIFT VOUCHER ---- */

.gift-voucher {
  position: relative;
  background: var(--black-deep);
}

.gift-inner {
  padding: 60px 0 100px;
}

.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.gift-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-top: 8px;
  margin-bottom: 32px;
}

.btn-gift {
  display: inline-block;
  padding: 16px 48px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s;
}

.btn-gift:hover {
  background: #3358c4;
}

.voucher-card {
  background: var(--off-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.voucher-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 8px;
}

.voucher-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: #666;
  margin-bottom: 32px;
}

.voucher-field {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voucher-line {
  flex: 1;
  border-bottom: 1px dashed #aaa;
}

.voucher-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  font-size: 11px;
}

.voucher-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.voucher-logo span {
  font-family: var(--font-script);
  font-size: 16px;
  font-weight: 700;
}

.voucher-address p {
  line-height: 1.5;
  color: #666;
}

.voucher-code {
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.voucher-code strong {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 2px;
}

.gift-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.gift-step {
  text-align: center;
  position: relative;
}

.gift-step h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}

.gift-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
}

/* ---- OUR PLACE ---- */

.our-place {
  background: var(--black-deep);
  padding: 80px 0 100px;
}

.our-place .section-title {
  margin-bottom: 40px;
}

.place-image {
  border-radius: 8px;
  overflow: hidden;
  max-height: 500px;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

/* ---- CONTACT CTA ---- */

.contact-cta {
  position: relative;
  background: var(--off-white);
}

.contact-cta-inner {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.contact-chair {
  max-width: 300px;
}

.contact-chair img {
  width: 100%;
  filter: grayscale(40%);
}

.contact-headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 40px;
}

.contact-headline span {
  display: inline;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.contact-details h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.contact-details a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-book-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--black);
  transition: color 0.2s;
}

.btn-book-link:hover {
  color: var(--gold);
}

/* ---- BOOK BANNER ---- */

.book-banner {
  position: relative;
  background: var(--black-deep);
  overflow: hidden;
}

.book-banner-inner {
  padding: 80px var(--container-padding);
  text-align: center;
}

.book-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 9vw, 160px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s;
}

.book-banner-title:hover {
  color: var(--gold);
}

/* ---- FOOTER ---- */

.footer {
  background: var(--black-deep);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 1.5fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 20px;
}

.footer-col h4:first-child {
  margin-top: 0;
}

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

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

.footer-col ul a,
.footer-col p {
  font-size: 13px;
  color: var(--gray);
  transition: color 0.2s;
  line-height: 1.6;
}

.footer-col ul a:hover {
  color: var(--gold);
}

.footer-col a {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
  color: var(--white);
}

.footer-social a {
  color: var(--white);
  transition: color 0.2s;
}

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

/* ---- SCROLL ANIMATIONS ---- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .hero-carousel {
    width: 52%;
    margin-right: 2%;
  }

  .hero-title {
    font-size: clamp(60px, 9vw, 120px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-content {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .services-image {
    display: none;
  }

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

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card-body {
    grid-template-columns: 1fr;
  }

  .team-card-image {
    height: 300px;
  }

  .gift-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-chair {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --container-padding: 20px;
  }

  .nav-links {
    display: none;
  }

  .btn-book-nav {
    display: none;
  }

  .lang-toggle {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

  .hero-right {
    width: 100%;
    height: 55%;
    top: auto;
    bottom: 0;
  }

  .hero-torn-edge {
    left: 0;
    top: 38%;
    width: 100%;
    height: 18%;
  }

  .hero-torn-edge::before {
    clip-path: polygon(
      0% 100%, 0% 60%,
      2% 55%, 4% 58%, 6% 52%, 8% 56%, 10% 50%,
      12% 54%, 14% 48%, 16% 53%, 18% 47%, 20% 52%,
      22% 46%, 24% 51%, 26% 45%, 28% 50%, 30% 44%,
      32% 49%, 34% 42%, 36% 48%, 38% 40%, 40% 46%,
      42% 39%, 44% 45%, 46% 38%, 48% 44%, 50% 36%,
      52% 42%, 54% 35%, 56% 41%, 58% 34%, 60% 40%,
      62% 32%, 64% 38%, 66% 30%, 68% 36%, 70% 28%,
      72% 34%, 74% 26%, 76% 32%, 78% 24%, 80% 30%,
      82% 22%, 84% 28%, 86% 20%, 88% 26%, 90% 18%,
      92% 24%, 94% 16%, 96% 22%, 98% 14%, 100% 20%,
      100% 100%
    );
  }

  .hero-title {
    background: linear-gradient(
      to bottom,
      var(--black) 0%,
      var(--black) 42%,
      var(--white) 42%,
      var(--white) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    font-size: clamp(52px, 12vw, 90px);
    text-align: center;
  }

  .hero-carousel {
    width: 80%;
    margin: 0 auto;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-signature {
    align-self: flex-end;
  }

  .portfolio-track {
    grid-template-columns: 1fr 1fr;
  }

  .services-vertical-title {
    font-size: 48px;
    padding: 20px 12px;
  }

  .services-content {
    padding: 32px 20px;
  }

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

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gift-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
    letter-spacing: -1px;
  }

  .hero-carousel {
    width: 92%;
  }

  .portfolio-track {
    grid-template-columns: 1fr;
  }

  .services-inner {
    flex-direction: column;
  }

  .services-vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 24px 20px 0;
    font-size: 36px;
  }

  .service-item {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .service-duration {
    display: none;
  }
}
