.fonts-loading {
      opacity: 0;
    }

    .fonts-loaded {
      opacity: 1;
      transition: opacity 0.3s ease;
    }

:root {
      
      --bg: #EFE9E0;
      --paper: #F7F3ED;
      --paperWarm: #F4EFE6;
      --paperLight: #FAF8F5;
      --surface: #D8C6B8;
      --ink: #191717;
      --inkSoft: #4A3B35;
      --accent: #CFB1A0;
      --accent2: #B58C72;
      --accent2Hover: #A67C64;
      --wash: rgba(207, 177, 160, 0.18);
      --washLight: rgba(207, 177, 160, 0.08);
      --hairline: rgba(181, 140, 114, 0.2);

      
      --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

      
      --space-xs: 0.5rem;
      --space-sm: 0.75rem;
      --space-md: 1rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 3rem;
      --space-3xl: 4rem;

      
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 28px;
      --radius-full: 9999px;
    }

    

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

    html {
      font-size: 16px;
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-sans);
      background-color: var(--bg);
      color: var(--ink);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      line-height: 1.8;
      overflow-x: hidden;
      position: relative;
    }

    
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 1000;
      opacity: 0.055;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    
    :focus-visible {
      outline: 2px solid var(--accent2);
      outline-offset: 3px;
    }

    

    
    .watercolor-tl {
      position: fixed;
      top: 8%;
      left: 5%;
      width: 40vw;
      max-width: 420px;
      height: auto;
      opacity: 0.35;
      pointer-events: none;
      z-index: 0;
      filter: blur(0.5px);
      animation: breathe 16s ease-in-out infinite;
    }

    
    .watercolor-br {
      position: fixed;
      bottom: 8%;
      right: 4%;
      width: 38vw;
      max-width: 400px;
      height: auto;
      opacity: 0.32;
      pointer-events: none;
      z-index: 0;
      filter: blur(0.5px);
      animation: breathe 20s ease-in-out infinite reverse;
    }

    @keyframes breathe {

      0%,
      100% {
        opacity: 0.32;
        transform: scale(1);
      }

      50% {
        opacity: 0.42;
        transform: scale(1.02);
      }
    }

    
    .botanical-bg {
      position: fixed;
      top: 15%;
      left: 12%;
      width: clamp(100px, 18vw, 180px);
      height: auto;
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
      filter: blur(0.6px);
      mix-blend-mode: multiply;
    }

    .botanical-bg-right {
      position: fixed;
      bottom: 18%;
      right: 10%;
      width: clamp(70px, 12vw, 130px);
      height: auto;
      opacity: 0.1;
      pointer-events: none;
      z-index: 0;
      filter: blur(0.6px);
      mix-blend-mode: multiply;
      transform: scaleX(-1) rotate(12deg);
    }

    
    @media (prefers-reduced-motion: reduce) {

      .watercolor-tl,
      .watercolor-br,
      .card,
      .btn,
      .chip {
        animation: none !important;
        transition: none !important;
      }
    }

    

    .container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: var(--space-lg);
      position: relative;
      z-index: 1;
    }

    

    .card {
      
      background: linear-gradient(180deg,
          rgba(255, 255, 255, 0.45) 0%,
          var(--paperLight) 2%,
          var(--paper) 18%,
          var(--paper) 82%,
          var(--paperWarm) 98%,
          rgba(220, 200, 180, 0.12) 100%);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(181, 140, 114, 0.18);
      
      box-shadow:
        0 1px 1px rgba(25, 23, 23, 0.008),
        0 2px 4px rgba(25, 23, 23, 0.012),
        0 6px 14px rgba(25, 23, 23, 0.025),
        0 16px 36px rgba(181, 140, 114, 0.04),
        0 32px 64px rgba(181, 140, 114, 0.035),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 6px rgba(181, 140, 114, 0.045),
        inset 2px 0 6px rgba(181, 140, 114, 0.02),
        inset -2px 0 6px rgba(181, 140, 114, 0.02);
      max-width: 820px;
      width: 100%;
      padding: var(--space-3xl) var(--space-xl);
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: cardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    
    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.035;
      mix-blend-mode: multiply;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='cardnoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23cardnoise)'/%3E%3C/svg%3E");
      border-radius: inherit;
    }

    @keyframes cardIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    .reveal {
      opacity: 0;
      animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .reveal-1 {
      animation-delay: 0.15s;
    }

    .reveal-2 {
      animation-delay: 0.3s;
    }

    .reveal-3 {
      animation-delay: 0.45s;
    }

    .reveal-4 {
      animation-delay: 0.6s;
    }

    .reveal-5 {
      animation-delay: 0.75s;
    }

    .reveal-6 {
      animation-delay: 0.9s;
    }

    .reveal-7 {
      animation-delay: 1.05s;
    }

    
    .chip {
      opacity: 0;
      animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .services-chips .chip:nth-child(1) {
      animation-delay: 0.7s;
    }

    .services-chips .chip:nth-child(2) {
      animation-delay: 0.8s;
    }

    .services-chips .chip:nth-child(3) {
      animation-delay: 0.9s;
    }

    
    .cta-group .btn {
      opacity: 0;
      animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .cta-group .btn:nth-child(1) {
      animation-delay: 1s;
    }

    .cta-group .btn:nth-child(2) {
      animation-delay: 1.1s;
    }

    .cta-group .btn:nth-child(3) {
      animation-delay: 1.2s;
    }

    
    @media (prefers-reduced-motion: reduce) {

      .reveal,
      .chip,
      .cta-group .btn {
        opacity: 1;
        animation: none !important;
        transform: none;
      }
    }

    
    .botanical-card {
      position: absolute;
      bottom: 25px;
      right: 25px;
      width: 60px;
      height: auto;
      opacity: 0.08;
      pointer-events: none;
      transform: rotate(10deg);
      filter: blur(0.5px);
      mix-blend-mode: multiply;
    }

    
    .botanical-card-tl {
      position: absolute;
      top: 22px;
      left: 22px;
      width: 50px;
      height: auto;
      opacity: 0.06;
      pointer-events: none;
      transform: rotate(-6deg) scaleX(-1);
      filter: blur(0.5px);
      mix-blend-mode: multiply;
    }

    

    .card-header {
      margin-bottom: var(--space-xl);
      position: relative;
      z-index: 1;
    }

    .brand-logo {
      width: auto;
      height: clamp(90px, 18vw, 130px);
      object-fit: contain;
    }

    

    .portrait-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: var(--space-xl);
      position: relative;
      z-index: 1;
    }

    
    .portrait-wash {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background:
        radial-gradient(ellipse 110% 100% at 45% 48%, rgba(207, 177, 160, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 90% 110% at 55% 52%, rgba(216, 198, 184, 0.15) 0%, transparent 55%);
      z-index: 0;
      filter: blur(12px);
    }

    .portrait-frame {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      border: 1px solid rgba(181, 140, 114, 0.25);
      box-shadow:
        0 2px 8px rgba(25, 23, 23, 0.04),
        0 6px 20px rgba(181, 140, 114, 0.08),
        0 12px 32px rgba(181, 140, 114, 0.06),
        inset 0 0 0 2px rgba(255, 255, 255, 0.6),
        inset 0 0 0 4px var(--paper);
      overflow: hidden;
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, var(--surface) 0%, var(--accent) 100%);
    }

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

    

    .card-content {
      margin-bottom: var(--space-lg);
      position: relative;
      z-index: 1;
    }

    .main-title {
      font-family: var(--font-serif);
      font-size: clamp(1.625rem, 4.2vw, 2.375rem);
      font-weight: 300;
      color: var(--ink);
      margin-bottom: var(--space-sm);
      letter-spacing: 0.035em;
      line-height: 1.35;
    }

    .tagline {
      font-family: var(--font-serif);
      font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
      font-weight: 400;
      font-style: italic;
      color: var(--inkSoft);
      margin-bottom: var(--space-xs);
      line-height: 1.8;
    }

    
    .signature-line {
      font-family: var(--font-serif);
      font-size: 0.9375rem;
      font-style: italic;
      font-weight: 300;
      color: var(--inkSoft);
      opacity: 0.65;
      margin-bottom: var(--space-md);
      letter-spacing: 0.025em;
    }

    .location {
      font-family: var(--font-sans);
      font-size: 0.9375rem;
      color: var(--accent2);
      font-weight: 500;
      letter-spacing: 0.03em;
      line-height: 1.9;
    }

    
    .separator {
      width: 60px;
      height: 1px;
      background: var(--hairline);
      margin: var(--space-xl) auto;
    }

    

    .services-section {
      margin: var(--space-lg) 0;
      position: relative;
      z-index: 1;
    }

    .services-label {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      color: var(--inkSoft);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-bottom: var(--space-md);
      font-weight: 500;
      line-height: 1.9;
    }

    .services-chips {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--space-sm);
    }

    .chip {
      display: inline-block;
      padding: 0.4rem 0.9rem;
      background: rgba(252, 250, 247, 0.9);
      border: 1px solid rgba(181, 140, 114, 0.15);
      border-radius: var(--radius-md);
      font-family: var(--font-sans);
      font-size: 0.875rem;
      color: var(--inkSoft);
      line-height: 1.6;
      transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow:
        0 1px 2px rgba(181, 140, 114, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    .chip:hover {
      background: rgba(216, 198, 184, 0.22);
      border-color: rgba(181, 140, 114, 0.28);
      color: var(--ink);
      transform: translateY(-1px);
      box-shadow:
        0 2px 6px rgba(181, 140, 114, 0.1),
        0 4px 12px rgba(181, 140, 114, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    

    .cta-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: var(--space-md);
      margin-top: var(--space-xl);
      position: relative;
      z-index: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-xs);
      height: 48px;
      padding: 0 var(--space-lg);
      border-radius: var(--radius-full);
      font-family: var(--font-sans);
      font-size: 0.9375rem;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: pointer;
    }

    .btn-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    
    .btn-primary {
      background: linear-gradient(180deg,
          rgba(195, 155, 130, 1) 0%,
          var(--accent2) 12%,
          var(--accent2) 88%,
          rgba(160, 120, 95, 1) 100%);
      color: white;
      border: none;
      box-shadow:
        0 1px 2px rgba(181, 140, 114, 0.12),
        0 2px 6px rgba(181, 140, 114, 0.1),
        0 6px 16px rgba(181, 140, 114, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    }

    .btn-primary:hover {
      background: linear-gradient(180deg,
          rgba(185, 145, 120, 1) 0%,
          var(--accent2Hover) 12%,
          var(--accent2Hover) 88%,
          rgba(150, 110, 85, 1) 100%);
      transform: translateY(-1px);
      box-shadow:
        0 2px 4px rgba(181, 140, 114, 0.14),
        0 4px 10px rgba(181, 140, 114, 0.12),
        0 10px 24px rgba(181, 140, 114, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    }

    
    .btn-secondary {
      background: rgba(252, 250, 247, 0.95);
      color: var(--inkSoft);
      border: 1px solid rgba(181, 140, 114, 0.16);
      box-shadow:
        0 1px 2px rgba(181, 140, 114, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .btn-secondary:hover {
      background: rgba(216, 198, 184, 0.18);
      border-color: rgba(181, 140, 114, 0.28);
      transform: translateY(-1px);
      box-shadow:
        0 2px 6px rgba(181, 140, 114, 0.08),
        0 4px 12px rgba(181, 140, 114, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    

    .card-footer {
      margin-top: var(--space-xl);
      padding-top: var(--space-lg);
      border-top: 1px solid var(--hairline);
      position: relative;
      z-index: 1;
    }

    .footer-message {
      font-family: var(--font-sans);
      font-size: 0.875rem;
      color: var(--inkSoft);
      line-height: 1.8;
    }

    .site-footer {
      text-align: center;
      padding: var(--space-lg);
      font-family: var(--font-serif);
      font-size: 0.8125rem;
      font-style: italic;
      color: var(--inkSoft);
      opacity: 0.55;
      position: relative;
      z-index: 1;
    }

    

    @media (max-width: 640px) {
      .container {
        padding: var(--space-md);
        padding-top: var(--space-xl);
        align-items: flex-start;
      }

      .card {
        padding: var(--space-xl) var(--space-lg);
        border-radius: var(--radius-md);
      }

      .portrait-frame {
        width: 110px;
        height: 110px;
      }

      .portrait-wash {
        width: 150px;
        height: 150px;
      }

      .cta-group {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .watercolor-tl,
      .watercolor-br {
        opacity: 0.2;
      }

      .botanical-bg,
      .botanical-bg-right {
        opacity: 0.08;
      }

      .botanical-card,
      .botanical-card-tl {
        display: none;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .container {
        padding: var(--space-xl);
      }
    }
