:root {
      --primary: #8B4513;
      --secondary: #D2691E;
      --accent: #F4A460;
      --dark: #2F1B0C;
      --light: #F8F1E5;
      --text: #3A2B26;
      --muted: #A99282;
      --radius: 16px;
      --shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Inter', system-ui, Arial, sans-serif;
      background-color: var(--light);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    /* Header & Navigation */
    header {
      background-color: var(--light);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .logo img {
      height: 80px;
      width: auto;
    }
    
    .logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: var(--primary);
      font-weight: 700;
    }
    
    nav ul {
      display: flex;
      list-style: none;
      gap: 28px;
    }
    
    nav a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
      padding: 8px 12px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    nav a:hover, nav a.active {
      background-color: rgba(139, 69, 19, 0.1);
      color: var(--primary);
    }
    
    .btn-cta {
      background: var(--primary);
      color: var(--light);
      padding: 12px 24px;
      border-radius: var(--radius);
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .btn-cta:hover {
      background: var(--secondary);
      transform: translateY(-2px);
    }
    
    /* Hero Section */
    .hero {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(244, 164, 96, 0.2) 0%, rgba(139, 69, 19, 0.1) 100%);
      border-radius: var(--radius);
      margin: 30px 0;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 20px;
    }
    
    .hero-text p {
      font-size: 18px;
      margin-bottom: 30px;
      color: var(--text);
    }
    
    .hero-badge {
      display: inline-block;
      background: var(--accent);
      color: var(--dark);
      padding: 8px 16px;
      border-radius: 30px;
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 15px;
    }
    
    .hero-cta {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .hero-cta:hover {
      background: var(--secondary);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
    
    .hero-image {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 400px;
    }
    
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    /* About Section */
    .about {
      padding: 80px 0;
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .about-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      height: 500px;
    }
    
    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .about-image:first-child {
      grid-column: 1 / 3;
    }
    
    .about-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .about-text p {
      margin-bottom: 20px;
      color: var(--text);
    }
    
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 30px 0;
      padding: 30px;
      background: rgba(139, 69, 19, 0.05);
      border-radius: var(--radius);
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 5px;
      font-weight: 700;
    }
    
    .stat-item p {
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 30px 0;
      padding: 30px;
      background: rgba(139, 69, 19, 0.05);
      border-radius: var(--radius);
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 5px;
      font-weight: 700;
    }
    
    .stat-item p {
      color: var(--muted);
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .values {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin: 25px 0;
    }
    
    .value-pill {
      background: rgba(139, 69, 19, 0.1);
      color: var(--primary);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
    }
    
    .learn-more {
      display: inline-block;
      background: var(--accent);
      color: var(--dark);
      padding: 12px 24px;
      border-radius: var(--radius);
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .learn-more:hover {
      background: var(--secondary);
      color: white;
      transform: translateY(-2px);
    }
    
    /* Services Section */
    .services {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(244, 164, 96, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
      border-radius: var(--radius);
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .section-header p {
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }
    
    .service-card {
      background: white;
      padding: 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
    }
    
    .service-card:hover {
      transform: translateY(-5px);
    }
    
    .service-icon {
      background: rgba(139, 69, 19, 0.1);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    
    .service-icon i {
      font-size: 28px;
      color: var(--primary);
    }
    
    .service-card h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    .service-card p {
      color: var(--text);
    }
    
    /* Call to Action */
    .cta-section {
      padding: 80px 0;
      text-align: center;
    }
    
    .cta-content {
      background: var(--primary);
      padding: 60px;
      border-radius: var(--radius);
      color: white;
    }
    
    .cta-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      margin-bottom: 20px;
    }
    
    .cta-content p {
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }
    
    .btn-light {
      background: white;
      color: var(--primary);
      padding: 14px 32px;
      border-radius: var(--radius);
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .btn-light:hover {
      background: var(--light);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .btn-outline-light {
      background: transparent;
      color: white;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-weight: 700;
      text-decoration: none;
      border: 2px solid white;
      transition: all 0.3s ease;
    }
    
    .btn-outline-light:hover {
      background: white;
      color: var(--primary);
      transform: translateY(-3px);
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      margin-bottom: 20px;
      color: var(--accent);
    }
    
    .footer-column p, .footer-column a {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 10px;
      display: block;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-column a:hover {
      color: white;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-links a {
      background: rgba(255, 255, 255, 0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 14px;
    }
    
    /* Contact Section */
    .contact-section {
      padding: 80px 0;
      background: var(--light);
    }
    
    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      margin-top: 50px;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }
    
    .contact-item i {
      background: var(--primary);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    
    .contact-item h3 {
      font-size: 18px;
      color: var(--dark);
      margin-bottom: 8px;
    }
    
    .contact-item p {
      color: var(--text);
      margin: 0;
      line-height: 1.6;
    }
    
    .contact-form {
      background: white;
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid rgba(139, 69, 19, 0.1);
      border-radius: var(--radius);
      font-family: inherit;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
    }
    
    .form-group button,
    .contact-form button {
      width: 100%;
      background: var(--primary);
      color: white;
      padding: 16px;
      border: none;
      border-radius: var(--radius);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .form-group button:hover,
    .contact-form button:hover {
      background: var(--secondary);
      transform: translateY(-2px);
    }

