/* ============================================
   DOLCE ARTE - PREMIUM CONFECTIONERY LANDING
   Design System & Complete Styles
   ============================================ */

/* ========== FONTS & VARIABLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* Colors - Refined Palette */
  --cream: #FCF9F2;
  --cream-dark: #F5F0E8;
  --white: #FFFFFF;
  --white-off: #FAFAFA;
  --dark: #1C1A1A;
  --dark-soft: #2C2A2A;
  --gold: #C9A96E;
  --gold-light: #D4C4A8;
  --gold-pale: #E8DDD0;
  --gold-dark: #A8894A;
  --gray: #8A8886;
  --gray-light: #B8B5B0;
  --gray-warm: #9D9A95;

  /* Typography */
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vw, 160px);
  --container-width: 1280px;
  --container-padding: clamp(20px, 5vw, 40px);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s var(--ease-smooth);
  --transition-medium: 0.5s var(--ease-out-expo);
  --transition-slow: 0.8s var(--ease-out-expo);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 26, 26, 0.06);
  --shadow-md: 0 8px 30px rgba(28, 26, 26, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 26, 26, 0.12);
  --shadow-xl: 0 40px 100px rgba(28, 26, 26, 0.15);
  --shadow-gold: 0 10px 40px rgba(201, 169, 110, 0.25);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Selection */
::selection {
  background: rgba(201, 169, 110, 0.2);
  color: var(--dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== CONTAINER ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.container-narrow {
  max-width: 960px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, .heading {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.display-text {
  font-family: var(--font-display);
  font-weight: 400;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 25px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 0.4em;
  color: var(--dark);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 44px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition-medium);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}
.btn-arrow:hover {
  gap: 16px;
}

/* ========== HEADER / NAVIGATION ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-medium);
  mix-blend-mode: difference;
}

.header.scrolled {
  background: rgba(28, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  mix-blend-mode: normal;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.logo span {
  color: var(--gold);
  font-style: italic;
}

.header.scrolled .logo {
  color: var(--white);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition-fast);
}

/* ========== HERO SECTION (REDESIGNED WITH CHEF PHOTO) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s var(--ease-out-expo);
  object-fit: cover;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(28, 26, 26, 0.85) 0%,
    rgba(28, 26, 26, 0.5) 50%,
    rgba(28, 26, 26, 0.3) 100%
  );
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

/* Левая колонка с текстом */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.5); }
}

.hero-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.3em;
  letter-spacing: 0.02em;
}

.hero-title .accent {
  color: var(--gold);
  font-style: italic;
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
  transform: scaleX(0);
  transform-origin: left;
  animation: line-reveal 1s var(--ease-out-expo) 0.8s forwards;
}

@keyframes line-reveal {
  to { transform: scaleX(1); }
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 450px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Правая колонка с фото кондитера */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-chef-image {
  position: relative;
  z-index: 2;
}

.hero-chef-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 40% 60% 60% 40% / 45% 45% 55% 55%;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: brightness(1.05) contrast(1.05);
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease-out-expo);
  animation: float-image 6s ease-in-out infinite;
}

@keyframes float-image {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-15px); }
}

.hero-chef-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 40% 60% 60% 40% / 45% 45% 55% 55%;
  z-index: -1;
  animation: rotate-border 20s linear infinite;
}

@keyframes rotate-border {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-decoration {
  position: absolute;
  z-index: 1;
}

.hero-decoration-circle {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 50%;
  top: 10%;
  right: -50px;
  animation: pulse-circle 4s ease-in-out infinite;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-star {
  position: absolute;
  color: var(--gold);
  opacity: 0.3;
  animation: float-star 8s ease-in-out infinite;
}

.floating-star:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; font-size: 1.5rem; }
.floating-star:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; font-size: 1rem; }
.floating-star:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; font-size: 2rem; }
.floating-star:nth-child(4) { top: 30%; left: 70%; animation-delay: 1s; font-size: 0.8rem; }

@keyframes float-star {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
  25% { transform: translateY(-20px) rotate(90deg); opacity: 0.5; }
  50% { transform: translateY(0) rotate(180deg); opacity: 0.2; }
  75% { transform: translateY(20px) rotate(270deg); opacity: 0.5; }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce-scroll 2s infinite;
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ========== ABOUT SECTION ========== */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--gold);
  color: var(--white);
  padding: 25px 35px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-image-badge .years {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.about-image-badge .text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

.about-content {
  padding-right: 40px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-warm);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  gap: 20px;
  margin: 2.5rem 0;
}

.about-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-feature-text strong {
  display: block;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.about-feature-text span {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ========== PORTFOLIO ========== */
.portfolio {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 50px;
}

.filter-btn:hover {
  color: var(--dark);
  border-color: var(--gold-light);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  group: true;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 26, 26, 0.8) 0%,
    rgba(28, 26, 26, 0.2) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-out-expo);
}

.portfolio-card:hover .portfolio-card-overlay h3 {
  transform: translateY(0);
}

.portfolio-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-out-expo) 0.1s;
}

.portfolio-card:hover .portfolio-card-tags {
  transform: translateY(0);
}

.portfolio-card-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 5px 14px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ========== CALCULATOR ========== */
.calculator {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

.calculator-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 8vw, 70px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 110, 0.15);
  position: relative;
  overflow: hidden;
}

.calculator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-weight: 400;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23C9A96E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
  cursor: pointer;
}

.form-group select:hover,
.form-group input:hover {
  border-color: var(--gold-light);
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
}

/* Range Slider */
.weight-slider-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--gold-light), var(--gold));
  border-radius: 2px;
  outline: none;
  padding: 0;
  border: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-md);
}

.weight-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 60px;
  text-align: center;
  font-weight: 500;
}

/* Calculator Result */
.calc-result {
  text-align: center;
  margin-top: 35px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.calc-result.visible {
  opacity: 1;
  transform: translateY(0);
}

.calc-result-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.calc-result-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: price-reveal 0.6s var(--ease-out-back);
}

@keyframes price-reveal {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.calc-result-note {
  font-size: 0.85rem;
  color: var(--gray-light);
}

.calc-cta {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

/* ========== REVIEWS ========== */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 35px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 169, 110, 0.2);
}

.review-phone {
  display: inline-block;
  background: linear-gradient(135deg, #2C2A2A, #1C1A1A);
  border-radius: 24px;
  padding: 12px 8px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-lg);
}

.review-phone img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
}

.review-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
}

.review-date {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ========== CONTACT ========== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--dark);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
}

.contact .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  padding-right: 40px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 35px;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-info-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-info-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--dark-soft);
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form .form-group label {
  color: var(--white);
  font-size: 1rem;
}

.contact-form .form-group select,
.contact-form .form-group input,
.contact-form .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.contact-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%23C9A96E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-form .form-group select:focus,
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.06);
}

.contact-form .form-group textarea {
  min-height: 130px;
  resize: vertical;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1;
  min-width: 100px;
}

.radio-option input {
  display: none;
}

.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
  color: var(--gray-light);
  text-align: center;
}

.radio-option input:checked + label {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ========== FOOTER ========== */
.footer {
  padding: 50px 0;
  background: var(--dark);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--gold);
  font-style: italic;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-text {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ========== SUCCESS MESSAGE ========== */
.success-message {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 40px;
  text-align: center;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.6;
  animation: success-appear 0.6s var(--ease-out-back);
  box-shadow: var(--shadow-gold);
}

@keyframes success-appear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image-wrapper {
    order: 1;
  }

  .hero-chef-image img {
    max-width: 350px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content {
    padding-right: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info {
    padding-right: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

/* Mobile (320px - 768px) */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(28, 26, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.5s var(--ease-out-expo);
    z-index: 999;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 140px;
    padding-bottom: 80px;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-chef-image img {
    max-width: 280px;
    border-radius: 50%;
    aspect-ratio: 1;
  }

  .hero-chef-image::before {
    border-radius: 50%;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-decoration-circle {
    display: none;
  }

  /* About */
  .about-image-badge {
    bottom: -15px;
    right: -15px;
    padding: 18px 25px;
  }

  .about-image-badge .years {
    font-size: 2rem;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-card {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
  }

  .portfolio-filter {
    gap: 8px;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  /* Calculator */
  .calculator-wrapper {
    padding: 30px 20px;
  }

  .calc-result-price {
    font-size: 2.5rem;
  }

  .weight-slider-group {
    flex-direction: column;
    gap: 12px;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 25px 20px;
  }

  /* Contact */
  .contact-form {
    padding: 30px 20px;
  }

  .radio-group {
    flex-direction: column;
  }

  .radio-option label {
    padding: 12px 16px;
  }

  /* General */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .btn {
    padding: 15px 30px;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .hero-chef-image img {
    max-width: 220px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .portfolio-card-overlay {
    padding: 20px;
  }

  .portfolio-card-overlay h3 {
    font-size: 1.1rem;
  }

  .calc-result {
    padding: 20px;
  }

  .calc-result-price {
    font-size: 2rem;
  }
}

/* ========== LOADING ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== PARALLAX ========== */
.parallax {
  transition: transform 0.1s linear;
}

/* ========== PRINT STYLES ========== */
@media print {
  .header, .hero-scroll-indicator, .mobile-menu-btn {
    display: none !important;
  }
}