@ -1,657 +0,0 @@
/* playfair-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/playfair-display-v40-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/playfair-display-v40-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/playfair-display-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* playfair-display-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 600;
  src: url('fonts/playfair-display-v40-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/raleway-v37-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 300;
  src: url('fonts/raleway-v37-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/raleway-v37-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/raleway-v37-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/raleway-v37-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* raleway-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 500;
  src: url('fonts/raleway-v37-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* --- Global Styles & Variables --- */
:root {
    /* Color Palette */
    --color-background: #FDFCFB; /* Soft, warm off-white */
    --color-bg-light: #FFFFFF;
    --color-text: #333333;       /* Charcoal gray for high readability */
    --color-accent: #C4B7A6;     /* Muted champagne/gold for buttons and highlights */
    --color-border: #EAEAEA;     /* Very light gray for subtle dividers */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --container-narrow-width: 850px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    margin: 0;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container.narrow {
    max-width: var(--container-narrow-width);
}

/* --- Typography --- */
h1, h2, h3, h4, .signature {
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem); /* Responsive font size */
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    /* FIX: Ensures long words break on mobile to prevent horizontal scroll */
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto; 
}

h2 { font-size: clamp(2rem, 5vw, 3rem); text-align: left; }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: ''; display: block; width: 60px; height: 1px; background-color: var(--color-border); margin: 1.5rem auto 0;
}

h3 { font-size: 1.75rem; }
h4 { font-size: 1rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }

p {
    margin: 0 0 1.5rem 0;
    font-weight: 300;
}
p:last-child { margin-bottom: 0; }

p.subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #fff;
    opacity: 0.9;
}

.signature { font-size: 1.3rem; }

/* --- General Link Styling --- */
/* We add :not(.btn) so that buttons inside sections don't get the text-link underline */
.section a:not(.btn) {
    color: var(--color-text);
    font-weight: 500; /* Makes the link slightly bolder than surrounding text */
    text-decoration: none;
    border-bottom: 1px solid #dcd3c7; /* A subtle, light underline */
    padding-bottom: 2px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.section a:not(.btn):hover {
    color: var(--color-accent); /* Changes text color to the main accent color on hover */
    border-bottom-color: var(--color-accent); /* Makes the underline stronger on hover */
}

/* --- Header & Navigation --- */
.main-header {
    padding: 1.25rem 0;
    position: sticky; top: 0;
    background-color: rgba(253, 252, 251, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    font-family: var(--font-heading); 
    font-size: 2rem; 
    font-weight: 600; 
    letter-spacing: 2px; 
    text-decoration: none; 
    color: var(--color-text); 
}
.main-nav a { text-decoration: none; color: var(--color-text); margin-left: 2.5rem; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px; transition: color 0.3s ease; }
.main-nav a:hover { color: var(--color-accent); }

/* START: New Hamburger Icon Style */
.icon {
    display: none;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--color-text);
}
/* END: New Hamburger Icon Style */


/* --- Hero Section --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('images/cover.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    --focal-point-x: 20%;
    --focal-point-y: 20%;
    background-position: var(--focal-point-x) var(--focal-point-y);
    background-attachment: fixed; /* Parallax effect */
}

/* --- General Section Styling --- */
.section { padding: 100px 0; }
.bg-light { background-color: var(--color-bg-light); }

/* --- Philosophy Section --- */
.philosophy-container { display: flex; align-items: center; gap: 4rem; }
.philosophy-image { flex: 1; }
.philosophy-image img { width: 100%; display: block; }
.philosophy-text { flex: 1; }

/* --- Dermatology Section --- */
.dermatology-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}
.dermatology-item:last-child { margin-bottom: 0; }

.dermatology-item:nth-child(odd) { flex-direction: row-reverse; }

.dermatology-image { flex: 1; }
.dermatology-image img { width: 100%; display: block; }
.dermatology-content { flex: 1; }

/* --- Treatments Section --- */
.treatment-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}
.treatment-item:last-child { margin-bottom: 0; }

.treatment-item:nth-child(even) { flex-direction: row-reverse; }

.treatment-image { flex: 1; }
.treatment-image img { width: 100%; display: block; }
.treatment-content { flex: 1; }

/* --- Founder Section --- */
.founder-bio { display: flex; align-items: center; gap: 4rem; }
.founder-image { flex: 1; max-width: 400px; }
.founder-image img { width: 100%; height: auto; display: block; }
.founder-text { flex: 1.5; }

/* Styles for the timeline */
.timeline {
    margin-top: 2rem;
}
.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr; /* Fixed width for year, rest for description */
    gap: 2rem; /* Space between columns */
    align-items: start;
    margin-bottom: 1rem;
}
.timeline-year {
    font-weight: 500;
    text-align: right;
    line-height: 1.8; /* Align with description line-height */
}
.timeline-desc {
    font-weight: 300;
    line-height: 1.8;
}


/* --- Contact Section --- */
.contact-section { text-align: center; }
.contact-section h2 { text-align: center; }
.contact-section h2::after { content: ''; display: block; width: 60px; height: 1px; background-color: var(--color-border); margin: 1.5rem auto 0; }
.contact-details { margin: 2rem 0; line-height: 2; font-weight: 400; }
.contact-details strong { font-weight: 500; }

/* Add spacing for the maps link */
.contact-details a {
    margin-left: 0.5rem;
}

/* --- Contact Form --- */
.contact-form {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-bg-light);
    color: var(--color-text);
    box-sizing: border-box; /* Ensures padding doesn't affect final width */
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    border: none;
    cursor: pointer;
    justify-self: center; /* Center button in grid layout */
}

#form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    min-height: 1.8em; /* Reserve space/prevent layout jump */
    transition: opacity 0.3s ease;
}

.form-success { color: #28a745; }
.form-error { color: #dc3545; }

/* --- Buttons --- */
.btn { display: inline-block; background-color: var(--color-accent); color: #fff; padding: 14px 32px; text-decoration: none; font-weight: 500; letter-spacing: 1px; border-radius: 2px; transition: background-color 0.3s ease, transform 0.3s ease; }
.btn:hover { background-color: #b3a593; transform: translateY(-2px); }

/* --- Footer --- */
.main-footer { 
    padding: 2rem 0; 
    text-align: center; 
    font-size: 0.9rem; 
    color: #4a4a4a; /* Darker color for better contrast */
    border-top: 1px solid var(--color-border); 
}

.main-footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allows wrapping on very small mobile screens */
}

.main-footer p {
    margin: 0; /* Removes the line break caused by paragraph margin */
}

/* --- FOOTER LINKS --- */
.footer-links {
    margin-top: 0; /* Removed top margin */
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #4a4a4a; /* Darker color matching the text */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500; /* Increased weight for readability */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    
    /* FIX FOR MOBILE PARALLAX JUMP */
    /* We move the background to a fixed pseudo-element sized with 'lvh' (Large Viewport Height).
    This prevents the background from resizing/jumping when the mobile address bar appears/disappears,
    while keeping the parallax effect via 'clip-path' masking. */
    .hero {
        background-image: none; /* Hide original background on container */
        clip-path: inset(0);    /* Create a window/mask for the fixed background */
        position: relative;
        z-index: 1;
    }

    .hero::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;  /* Fallback */
        height: 100lvh; /* Stable height ignoring URL bar resizing */
        z-index: -1;
        
        /* Inherit background styles */
        background-image: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('images/cover.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        /* Use the existing CSS variables for positioning */
        background-position: var(--focal-point-x) var(--focal-point-y);
        
        will-change: transform; /* Performance optimization */
        pointer-events: none;
    }

    h1 { margin-top: 2rem; }
    p.subtitle { font-size: 1.1rem; }
    
    /* Reduced font size and letter spacing to prevent wrapping */
    .logo { 
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    /* RESPONSIVE NAVIGATION STYLES */
    .main-nav a {
        display: none; /* Hide nav links by default */
    }

    .icon {
        display: block; /* Show hamburger icon */
    }

    .main-nav.responsive {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; /* Position below the header (adjust if header height changes) */
        left: 0;
        width: 100%;
        background-color: var(--color-background);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 3px 5px rgba(0,0,0,0.03);
    }
    
    .main-nav.responsive a {
        display: block; /* Show links in the open menu */
        padding: 1rem 2rem;
        margin-left: 0;
    }
    .main-nav.responsive a:hover {
        background-color: #f9f9f9;
    }

    .philosophy-container,
    .dermatology-item,
    .dermatology-item:nth-child(odd),
    .treatment-item,
    .treatment-item:nth-child(even),
    .founder-bio {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .philosophy-text h2,
    .dermatology-content h3,
    .treatment-content h3 { text-align: center; }
    
    .founder-text { max-width: 500px; }
    
    /* Responsive timeline styles */
    .timeline-item {
        grid-template-columns: 1fr; /* Stack year on top of description */
        gap: 0.25rem;
        text-align: center;
    }
    .timeline-year {
        text-align: center; /* Ensure year is centered */
        margin-bottom: 0;
    }
}

/* --- Pricing Section --- */
.pricing-list {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-list .pricing-intro {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-bottom: 2rem;
}

.pricing-list p {
    margin-bottom: 1rem;
    font-weight: 300;
}

.pricing-list p strong {
    font-weight: 500;
}

.pricing-list .pricing-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pricing-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.pricing-list ul li {
    margin-bottom: 1rem;
    padding-left: 1.5em;
    position: relative;
    font-weight: 300;
}

.pricing-list ul li::before {
    content: '•';
    color: var(--color-accent);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

/* --- STYLING FOR SUB-PAGES (WITHOUT IMAGES) --- */
/* Ensures spacing below the fixed header on text pages */
.sub-page-content {
    padding-top: 140px; 
    padding-bottom: 4rem;
    min-height: 60vh; /* Prevents the footer from floating in the middle of the screen with little text */
}

.sub-page-content h1 {
    color: var(--color-text); /* Dark text, as there is no dark background image */
    font-size: clamp(2rem, 5vw, 3rem); 
    margin-bottom: 2rem;
    text-align: left;
}

.sub-page-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

/* Navigation adjustment for sub-pages, if necessary */
body.sub-page {
    background-color: var(--color-background);
}

/* --- Booking Call-to-Action Box --- */
.booking-cta-box {
    background-color: #f8f9fa; /* Slightly darker/warmer than main bg to stand out */
    padding: 2.5rem 2rem;
    border-radius: 4px; /* Matches the sharp 2px/4px aesthetic of your site */
    text-align: center;
    margin-bottom: 3rem;
    border: 1px solid var(--color-border);
}

.booking-cta-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.booking-cta-box p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-cta-box .btn {
    border: none;
    cursor: pointer;
    justify-self: center; /* Center button in grid layout */
}

/* FIX FOR IPAD & iOS: Fixes missing background image */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}