:root {
    --navy: #1e2d4a;
    --dusty-rose: #b8857a;
    --cream: #f5f0eb;
    --warm-white: #faf7f4;
    --sand: #e8ddd3;
    --muted-sage: #8a9e8f;
    --light-rose: #d4a59a;
    --text-dark: #2a2a2a;
    --text-mid: #5a5a5a;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(250, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30,45,74,0.08);
    padding: 16px 48px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--navy);
    text-transform: uppercase;
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--navy); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 120px 24px 80px;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184,133,122,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 20% 80%, rgba(30,45,74,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Decorative seagrass lines */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(232,221,211,0.3), transparent);
    pointer-events: none;
  }

  .logo-circle {
    width: 340px; height: 340px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    animation: fadeUp 1s ease both;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
  }
  .logo-circle img {
    width: 100%; height: 100%; object-fit: cover;
  }

  .hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.12em;
    text-align: center;
    line-height: 1;
    animation: fadeUp 1s 0.2s ease both;
    opacity: 0;
  }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--dusty-rose);
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 8px;
    animation: fadeUp 1s 0.35s ease both;
    opacity: 0;
    display: flex; align-items: center; gap: 16px;
  }
  .hero-subtitle::before, .hero-subtitle::after {
    content: '—';
    color: var(--dusty-rose);
    opacity: 0.6;
  }

  .hero-tagline {
    margin-top: 28px;
    display: flex; align-items: center; gap: 12px;
    animation: fadeUp 1s 0.5s ease both;
    opacity: 0;
  }
  .hero-tagline::before, .hero-tagline::after {
    content: '';
    width: 60px; height: 1px;
    background: var(--dusty-rose);
    opacity: 0.5;
  }
  .hero-tagline span {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-mid);
  }
  .paw-icon { color: var(--dusty-rose); font-size: 16px; }

  .hero-cta {
    margin-top: 48px;
    display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 1s 0.65s ease both;
    opacity: 0;
  }
  .btn-primary {
    background: var(--navy);
    color: white;
    padding: 14px 36px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: #2a3d5e; transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 14px 36px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-outline:hover { background: var(--navy); color: white; }

  /* ── SECTION SHARED ── */
  section { padding: 100px 24px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dusty-rose);
    margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .section-divider {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 48px;
  }
  .section-divider::before, .section-divider::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, var(--dusty-rose), transparent);
    opacity: 0.4;
  }
  .section-divider .paw { color: var(--dusty-rose); font-size: 14px; }

  /* ── ABOUT ── */
  .about { background: var(--cream); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-text-content {
    column-count: 2;
    column-gap: 32px;
  }
  .about-text p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 16px;
    font-weight: 300;
  }
  .about-lead {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
    color: var(--navy) !important;
    font-style: italic;
    margin-bottom: 24px !important;
  }
  .about-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .about-circle {
    width: 360px; height: 360px;
    border-radius: 50%;
    border: 1.5px solid var(--navy);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .about-circle::before {
    content: '';
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(30,45,74,0.15);
  }
  .about-circle-inner {
    width: 300px; height: 300px;
    border-radius: 50%;
    background: var(--sand);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }
  .about-circle-inner .big-num {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    color: var(--navy);
    line-height: 1;
  }
  .about-circle-inner .big-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--dusty-rose);
    margin-top: 8px;
  }
  .about-circle-inner .big-sub {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-top: 12px;
  }

  /* ── SERVICES ── */
  .services { background: var(--warm-white); }
  .services-header { text-align: center; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--sand);
  }
  .service-card {
    background: var(--warm-white);
    padding: 48px 36px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--dusty-rose);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .service-card:hover { background: var(--cream); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 52px; height: 52px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
    color: white;
  }
  .service-name {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .service-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--dusty-rose);
    margin-bottom: 8px;
  }
  .service-price span {
    font-size: 14px;
    color: var(--text-mid);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
  }
  .service-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  /* ── GALLERY ── */
  .gallery-section { background: var(--navy); }
  .gallery-section .section-label { color: rgba(212,165,154,0.8); }
  .gallery-section .section-title { color: white; }
  .gallery-section .section-divider::before,
  .gallery-section .section-divider::after { background: linear-gradient(to right, transparent, rgba(212,165,154,0.4), transparent); }
  .gallery-section .section-divider .paw { color: var(--light-rose); }
  .gallery-header { text-align: center; margin-bottom: 48px; }
  .gallery-desc {
    color: rgba(255,255,255,0.7);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
  }
  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 45, 74, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .gallery-item:hover::after {
    opacity: 1;
  }
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .gallery-item:hover .gallery-img {
    transform: scale(1.08);
  }
  .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ── LIGHTBOX ── */
  .lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
  }
  .lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
  }
  .lightbox-modal.active .lightbox-img {
    transform: scale(1);
  }
  .lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: transparent;
    border: none;
    color: white;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
  }
  .lightbox-close:hover {
    color: var(--dusty-rose);
  }

  /* ── WHY US ── */
  .why { background: var(--cream); text-align: center; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
  }
  .why-item { padding: 20px; }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--dusty-rose);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 8px;
  }
  .why-title {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .why-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ── CONTACT ── */
  .contact { background: var(--warm-white); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: start;
  }
  .contact-form { }
  .form-group { margin-bottom: 28px; }
  .form-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
  }
  .form-input, .form-textarea, .form-select {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--sand);
    background: transparent;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s;
  }
  .form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--dusty-rose);
  }
  .form-textarea { resize: vertical; min-height: 100px; }
  .form-select { cursor: pointer; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--navy);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
  }
  .contact-info p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
  }
  .contact-detail {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sand);
  }
  .contact-detail-icon {
    width: 42px; height: 42px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
  }
  .contact-detail-text strong {
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 4px;
  }
  .contact-detail-text span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--navy);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 60px 24px 40px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: white;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
  }
  .footer-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--light-rose);
    margin-bottom: 32px;
  }
  .footer-tagline {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 40px;
  }
  .footer-divider {
    width: 80px; height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 32px;
  }
  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.1em;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .about-text-content { column-count: 1; }
    nav { padding: 14px 24px; }
    .nav-links { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .about-visual { display: none; }
    .form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .logo-circle { width: 220px; height: 220px; }
  }

  /* ── INLINE-STYLE REPLACEMENTS (security hardening) ── */
  .contact-link {
    color: var(--navy);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    transition: color 0.3s;
  }
  .contact-link:hover {
    color: var(--dusty-rose);
  }

  .contact-detail--last {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .btn-submit {
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
  }
  .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  /* ── SPAM PROTECTION ── */
  .form-honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }

  /* ── FORM STATUS MESSAGES ── */
  .form-status {
    margin-top: 16px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    text-align: center;
    min-height: 24px;
    letter-spacing: 0.02em;
  }
  .form-status--success {
    color: var(--muted-sage);
    font-weight: 400;
  }
  .form-status--error {
    color: #c0392b;
    font-weight: 400;
  }