   *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      overflow-x: hidden;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #f5f5f5; }
    ::-webkit-scrollbar-thumb { background: #A2262B; border-radius: 4px; }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 120px 0; position: relative; }
    .section-label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #A2262B;
      margin-bottom: 16px;
      display: inline-block;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 18px;
      color: #666;
      max-width: 560px;
      line-height: 1.7;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 60px;
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }
    .btn-primary {
      background: linear-gradient(135deg, #A2262B, #cc1f1f);
	  
      color: #fff;
      box-shadow: 0 8px 32px rgba(232, 114, 42, 0.35);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(232, 114, 42, 0.5);
    }
    .btn-outline {
      background: transparent;
      color: #1a1a1a;
      border: 2px solid rgba(0,0,0,0.15);
    }
    .btn-outline:hover {
      border-color: #A2262B;
      color: #A2262B;
    }

    /* Animations */
    .fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* Header */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s ease;
    }
    .header.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      padding: 14px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .header .container { display: flex; align-items: center; justify-content: space-between; }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: #1a1a1a;
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 120px;
      width: auto;
    }
    .logo-desktop { display: block; }
    .logo-mobile { display: none; }
    .nav { display: flex; align-items: center; gap: 36px; }
    .nav a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(0,0,0,0.6);
      transition: color 0.3s;
      position: relative;
    }
    .nav a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: #A2262B;
      transition: width 0.3s;
    }
    .nav a:hover { color: #000; }
    .nav a:hover::after { width: 100%; }

    /* Burger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
      background: none;
      border: none;
    }
    .burger span {
      width: 28px; height: 2px;
      background: #1a1a1a;
      transition: all 0.3s;
      border-radius: 2px;
    }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(204,31,31,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(245,158,66,0.05) 0%, transparent 60%);
      z-index: 0;
    }
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-content { max-width: 600px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(204,31,31,0.1);
      border: 1px solid rgba(204,31,31,0.25);
      border-radius: 40px;
      padding: 8px 20px;
      font-size: 13px;
      font-weight: 600;
      color: #A2262B;
      margin-bottom: 28px;
    }
    .hero-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: #A2262B;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.5); }
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero h1 .accent {
      background: linear-gradient(135deg, #A2262B, #cc1f1f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 18px;
      color: #666;
      margin-bottom: 40px;
      line-height: 1.8;
    }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-image-wrapper {
      width: 480px;
      height: 480px;
      border-radius: 50%;
      overflow: hidden;
      position: relative;
      animation: float 6s ease-in-out infinite;
      box-shadow: 0 30px 80px rgba(204,31,31,0.2);
    }
    .hero-image-wrapper img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-image-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 3px solid rgba(204,31,31,0.3);
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-20px); }
    }
    .floating-card {
      position: absolute;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: floatCard 5s ease-in-out infinite;
      box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    .floating-card:nth-child(2) { animation-delay: -1.5s; }
    .floating-card:nth-child(3) { animation-delay: -3s; }
    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .fc-1 { top: 20px; right: -20px; }
    .fc-2 { bottom: 60px; left: -30px; }
    .fc-3 { bottom: -10px; right: 20px; }
    .floating-card .fc-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: rgba(204,31,31,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .floating-card .fc-text { font-size: 13px; color: #888; }
    .floating-card .fc-value { font-size: 16px; font-weight: 700; color: #1a1a1a; }

    /* Stats */
    .stats-bar {
      padding: 60px 0;
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
    }
    .stat-item .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 800;
      background: linear-gradient(135deg, #A2262B, #cc1f1f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-item .stat-label {
      font-size: 14px;
      color: #666;
      margin-top: 8px;
    }

    /* Services */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .service-card {
      background: #fafafa;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 24px;
      padding: 40px 32px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #A2262B, #cc1f1f);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover {
      background: #fff;
      border-color: rgba(204,31,31,0.3);
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      background: rgba(204,31,31,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 30px;
      margin-bottom: 24px;
    }
    .service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
    .service-card p { font-size: 15px; color: #666; line-height: 1.7; }

    /* Menu */
    .menu-section { background: #fafafa; }
    .menu-tabs { display: flex; gap: 8px; margin: 40px 0; flex-wrap: wrap; }
    .menu-tab {
      padding: 10px 24px;
      border-radius: 40px;
      font-size: 14px;
      font-weight: 600;
      background: #f5f5f5;
      border: 1px solid rgba(0,0,0,0.08);
      color: #888;
      cursor: pointer;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }
    .menu-tab.active, .menu-tab:hover {
      background: rgba(204,31,31,0.1);
      border-color: rgba(204,31,31,0.3);
      color: #A2262B;
    }
    .menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .menu-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }
    .menu-card:hover {
      transform: translateY(-6px);
      border-color: rgba(204,31,31,0.3);
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }
    .menu-card-img {
      height: 180px;
      overflow: hidden;
    }
    .menu-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .menu-card:hover .menu-card-img img { transform: scale(1.08); }
    .menu-card-body { padding: 20px; }
    .menu-card-body h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
    .menu-card-body .menu-desc { font-size: 13px; color: #888; margin-bottom: 14px; }
    .menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
    .menu-price { font-size: 20px; font-weight: 800; color: #A2262B; }
    .menu-price small { font-size: 13px; color: #888; font-weight: 400; }
    .menu-add-btn {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(204,31,31,0.1);
      border: none;
      color: #A2262B;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .menu-add-btn:hover { background: #A2262B; color: #fff; }

    /* Calculator */
    .calculator-section { background: #fff; }
    .calc-box {
      background: #fafafa;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 32px;
      padding: 60px;
      margin-top: 60px;
    }
    .calc-box h3 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .calc-box > p { color: #666; margin-bottom: 40px; font-size: 16px; }
    .calc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    .calc-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #555;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .calc-group select,
    .calc-group input {
      width: 100%;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.1);
      background: #fff;
      color: #1a1a1a;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      outline: none;
      transition: border-color 0.3s;
    }
    .calc-group select:focus,
    .calc-group input:focus { border-color: #A2262B; }
    .calc-result {
      background: linear-gradient(135deg, rgba(204,31,31,0.1), rgba(245,158,66,0.05));
      border: 1px solid rgba(204,31,31,0.2);
      border-radius: 20px;
      padding: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .calc-result-text { font-size: 16px; color: #555; }
    .calc-result-text strong { font-size: 36px; color: #A2262B; font-weight: 800; }
    .calc-result-text small { display: block; color: #888; font-size: 13px; margin-top: 4px; }

    /* Why */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 60px;
    }
    .why-visual { position: relative; }
    .why-main-card {
      background: linear-gradient(135deg, rgba(204,31,31,0.1), rgba(245,158,66,0.05));
      border: 1px solid rgba(204,31,31,0.2);
      border-radius: 32px;
      padding: 60px;
      text-align: center;
    }
    .why-main-card .big-emoji { font-size: 120px; margin-bottom: 20px; }
    .why-main-card p { font-size: 18px; font-weight: 600; color: #A2262B; }
    .why-features { display: flex; flex-direction: column; gap: 28px; }
    .why-feature { display: flex; gap: 20px; align-items: flex-start; }
    .why-feature-icon {
      width: 52px; height: 52px; min-width: 52px;
      border-radius: 14px;
      background: rgba(204,31,31,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
    }
    .why-feature h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
    .why-feature p { font-size: 14px; color: #666; line-height: 1.7; }

    /* Testimonials */
    .testimonials-section { background: #fafafa; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .testimonial-card {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 24px;
      padding: 36px;
      transition: all 0.4s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    }
    .testimonial-card:hover {
      border-color: rgba(204,31,31,0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    }
    .testimonial-stars { color: #A2262B; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial-text { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #A2262B, #cc1f1f);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 700; color: #fff;
    }
    .testimonial-name { font-size: 15px; font-weight: 600; }
    .testimonial-role { font-size: 13px; color: #888; }

    /* CTA */
    .cta-section { padding: 120px 0; }
    .cta-box {
      background: linear-gradient(135deg, rgba(204,31,31,0.1), rgba(245,158,66,0.05));
      border: 1px solid rgba(204,31,31,0.2);
      border-radius: 40px;
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute;
      font-size: 300px;
      opacity: 0.04;
      top: -40px; right: -40px;
      background: url('https://images.unsplash.com/photo-1495195134817-aeb325a55b35?w=400') center/cover;
      border-radius: 50%;
    }
    .cta-box p { font-size: 18px; color: #666; max-width: 500px; margin: 0 auto 40px; }
    .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* Contact */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 60px;
    }
    .contact-info { display: flex; flex-direction: column; gap: 32px; }
    .contact-item { display: flex; gap: 16px; align-items: flex-start; }
    .contact-item-icon {
      width: 52px; height: 52px; min-width: 52px;
      border-radius: 14px;
      background: rgba(204,31,31,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
    }
    .contact-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
    .contact-item p { font-size: 14px; color: #666; }
    .contact-form {
      background: #fff;
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #555;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.1);
      background: #fafafa;
      color: #1a1a1a;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.3s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus { border-color: #A2262B; }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select option { background: #fff; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Footer */
    .footer {
      padding: 60px 0 30px;
      border-top: 1px solid rgba(0,0,0,0.06);
	  text-align: left;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-about .logo { margin-bottom: 16px; }
    .footer-about .logo img { height: 120px; width: auto; }
    .footer-about p {text-align: left;margin-left: 1em; font-size: 14px; color: #666; line-height: 1.7; }
    .footer-col.services { text-align: right; }
    .footer-col.services h5 { justify-content: flex-end; display: block; }
    .footer-col.services ul { text-align: right; }
    .footer-col.center { text-align: center; }
    .footer-col.center h5 { justify-content: center; display: block; }
    .footer-col.center ul { text-align: center; }
    .footer h5 {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: #1a1a1a;
    }
    .footer ul li { margin-bottom: 10px; }
    .footer ul a {
      font-size: 14px;
      color: #666;
      transition: color 0.3s;
    }
    .footer ul a:hover { color: #A2262B; }
    .footer-bottom {
      border-top: 1px solid rgba(0,0,0,0.06);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #999;
    }
    .footer-socials { display: flex; gap: 12px; }
    .footer-socials a {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(0,0,0,0.04);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #666;
      transition: all 0.3s;
    }
    .footer-socials a:hover {
      background: rgba(204,31,31,0.15);
      color: #A2262B;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero-content { max-width: 100%; }
      .hero-buttons { justify-content: center; }
      .hero-visual { display: none; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .menu-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .calc-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .section { padding: 80px 0; }
      .nav { display: none; }
      .burger { display: flex; }
      .logo-desktop { display: none; }
      .logo-mobile { display: block; }
      .logo img { height: 60px; }
      .header .logo-desktop { display: none; }
      .header .logo-mobile { display: block; }
      .footer .logo-desktop { display: block; }
      .footer .logo-mobile { display: none; }
      .footer .logo img { height: 120px; }
      .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(255,255,255,0.98);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 1000;
      }
      .nav.open a { font-size: 22px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .menu-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-box { padding: 48px 24px; border-radius: 24px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .calc-box { padding: 32px 20px; }
    }