/* ================================
   LUIZA BARWOOD WEBSITE
   Global Style Foundation
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F7F5F1;
    color: #1E1D1B;
    line-height: 1.6;
}

/* DESIGN TOKENS */
:root {
    --bg-main: #F7F5F1;
    --bg-soft: #EFE8DF;
    --blush: #E8D1CC;
    --text-main: #1E1D1B;
    --text-soft: #5F5A52;
    --border: #D8D1C7;
    --white: #FFFFFF;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-main);
    line-height: 1.05;
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h3 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

p {
    color: var(--text-soft);
    font-size: 1rem;
}

/* LAYOUT */
.container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

section {
    padding: 96px 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--blush);
    color: var(--text-main);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #DEC1BC;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--border);
}

.btn-secondary:hover {
    background-color: var(--bg-soft);
}

/* LINKS */
a {
    color: inherit;
}

/* IMAGES */
img {
    max-width: 100%;
    display: block;
}

/* UTILS */
.text-center {
    text-align: center;
}

/* ================================
   HEADER
================================ */

.header {
    width: 100%;
    padding: 34px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    background-color: var(--bg-main);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* LOGO */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    white-space: nowrap;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.03em;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.6;
}

/* HEADER BUTTON */
.header-btn {
    padding-inline: 22px;
}

/* ================================
   HERO SECTION
================================ */

.hero {
    padding: 120px 0 140px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 72px;
}

/* CONTENT */
.hero-content {
    max-width: 620px;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 24px;

    padding: 10px 18px;

    background-color: var(--bg-soft);

    border-radius: 999px;

    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--text-main);
}

.hero h1 {
    margin-bottom: 32px;

    letter-spacing: -0.05em;

    line-height: 0.92;

    max-width: 720px;
}

.hero-description {
    max-width: 560px;

    margin-bottom: 46px;

    font-size: 1.15rem;
    line-height: 1.9;

    color: var(--text-soft);
}
/* BUTTONS */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* IMAGE */
.hero-image img {

    width: 100%;

    height: 860px;

    object-fit: cover;

    object-position: center top;

    border-radius: 36px;

    filter: brightness(0.98);

    transition: transform 0.8s ease;
}

.hero-image {

    overflow: hidden;

    border-radius: 36px;
}

.hero-image:hover img {

    transform: scale(1.02);
}

.hero-content {
    position: relative;
}

.hero-content::before {

    content: "";

    width: 80px;
    height: 1px;

    background-color: var(--border);

    position: absolute;

    top: -40px;
    left: 0;
}

/* ================================
   PROBLEM SECTION
================================ */

.problem-section {
    background-color: var(--white);
    padding: 140px 0;
}

.problem-content {
    max-width: 980px;
}

/* TAG */
.section-tag {

    display: inline-block;

    margin-bottom: 28px;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--text-soft);
}

/* TITLE */
.problem-section h2 {

    margin-bottom: 56px;

    line-height: 1.02;
    letter-spacing: -0.04em;
}

/* GRID */
.problem-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 64px;
}

/* ITEMS */
.problem-item {

    padding: 26px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background-color: var(--bg-main);

    font-size: 1rem;

    color: var(--text-soft);

    transition: all 0.3s ease;
}

.problem-item:hover {

    transform: translateY(-3px);

    background-color: var(--bg-soft);
}

/* CLOSING */
.problem-closing {

    font-family: 'Cormorant Garamond', serif;

    font-size: 2rem;

    line-height: 1.3;

    color: var(--text-main);
}

/* ================================
   SERVICES SECTION
================================ */

.services-section {

    padding: 140px 0;

    background-color: var(--bg-main);
}

/* HEADER */
.services-header {

    max-width: 820px;

    margin-bottom: 72px;
}

.services-header h2 {

    line-height: 1.05;

    letter-spacing: -0.04em;
}

/* GRID */
.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* CARD */
.service-card {

    padding: 38px;

    background-color: var(--white);

    border: 1px solid var(--border);

    border-radius: 28px;

    min-height: 320px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all 0.35s ease;
}

/* HOVER */
.service-card:hover {

    transform: translateY(-6px);

    border-color: #D8BDB8;
}

/* FEATURED */
.featured-card {

    background-color: var(--bg-soft);
}

/* NUMBER */
.service-number {

    display: inline-block;

    margin-bottom: 28px;

    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;

    color: var(--text-soft);
}

/* TITLE */
.service-card h3 {

    margin-bottom: 22px;

    font-size: 2rem;

    line-height: 1.05;
}

/* TEXT */
.service-card p {

    line-height: 1.9;
}

/* ================================
   ABOUT SECTION
================================ */

.about-section {

    padding: 160px 0;

    background-color: var(--white);
}

.about-container {

    display: grid;

    grid-template-columns: 0.95fr 1fr;

    gap: 88px;

    align-items: center;
}

/* IMAGE */
.about-image img {

    width: 100%;

    height: 760px;

    object-fit: cover;

    border-radius: 32px;
}

/* CONTENT */
.about-content {

    max-width: 620px;
}

.about-content h2 {

    margin-bottom: 36px;

    line-height: 1;

    letter-spacing: -0.04em;
}

/* TEXT */
.about-content p {

    margin-bottom: 24px;

    font-size: 1.05rem;

    line-height: 1.95;
}

/* ================================
   TESTIMONIALS
================================ */

.testimonials-section {

    padding: 160px 0;

    background-color: var(--bg-main);
}

/* HEADER */
.testimonials-header {

    max-width: 760px;

    margin-bottom: 72px;
}

.testimonials-header h2 {

    line-height: 1.03;

    letter-spacing: -0.04em;
}

/* GRID */
.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* CARD */
.testimonial-card {

    padding: 42px;

    background-color: var(--white);

    border: 1px solid var(--border);

    border-radius: 30px;

    min-height: 360px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all 0.35s ease;
}

/* FEATURED */
.featured-testimonial {

    background-color: var(--bg-soft);
}

/* HOVER */
.testimonial-card:hover {

    transform: translateY(-6px);
}

/* TEXT */
.testimonial-text {

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.7rem;

    line-height: 1.45;

    color: var(--text-main);
}

/* AUTHOR */
.testimonial-author {

    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-top: 36px;
}

.author-name {

    font-size: 0.95rem;
    font-weight: 700;

    color: var(--text-main);
}

.author-role {

    font-size: 0.9rem;

    color: var(--text-soft);
}

/* ================================
   FINAL CTA
================================ */

.final-cta-section {

    padding: 220px 0;

    background-color: var(--bg-soft);
}

/* CONTENT */
.final-cta-content {

    max-width: 860px;

    margin: 0 auto;

    text-align: center;
}

/* TITLE */
.final-cta-content h2 {

    margin-bottom: 12px;

    line-height: 0.95;

    letter-spacing: -0.05em;
}

/* SUBTITLE */
.final-cta-content h3 {

    margin-bottom: 36px;

    font-size: clamp(2.2rem, 5vw, 4rem);

    color: var(--text-soft);

    font-weight: 500;
}

/* TEXT */
.final-cta-content p {

    max-width: 620px;

    margin: 0 auto 46px;

    font-size: 1.1rem;

    line-height: 1.9;
}

/* ================================
   FOOTER
================================ */

.footer {

    padding: 100px 0 48px;

    background-color: var(--white);

    border-top: 1px solid rgba(0,0,0,0.04);
}

/* TOP */
.footer-top {

    display: flex;

    justify-content: space-between;

    gap: 64px;

    margin-bottom: 72px;
}

/* BRAND */
.footer-brand {

    max-width: 420px;
}

.footer-logo {

    display: inline-block;

    margin-bottom: 20px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 2rem;

    font-weight: 600;

    text-decoration: none;

    color: var(--text-main);
}

.footer-brand p {

    line-height: 1.9;
}

/* LINKS */
.footer-links {

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.footer-links a {

    text-decoration: none;

    color: var(--text-main);

    font-size: 0.95rem;

    transition: opacity 0.3s ease;
}

.footer-links a:hover {

    opacity: 0.6;
}

/* BOTTOM */
.footer-bottom {

    padding-top: 28px;

    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-bottom p {

    font-size: 0.9rem;

    color: var(--text-soft);
}

/* ================================
   MOBILE MENU
================================ */

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
}

/* ================================
   ABOUT DETAILS
================================ */

.about-location {
    margin-top: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.about-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 42px;
}

.about-detail-card {
    padding: 30px;
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 26px;
}

.about-detail-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-detail-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.about-detail-card li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
    line-height: 1.7;
}

.about-detail-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-main);
}

.about-detail-card p {
    margin-bottom: 16px;
}

/* ================================
   ABOUT REFINEMENT
================================ */

.about-content {
    max-width: 720px;
}

.about-details {
    margin-top: 48px;
}

.about-detail-card {
    background-color: var(--white);
}

.about-detail-card:first-child {
    background-color: var(--bg-soft);
}

.about-detail-card h3 {
    letter-spacing: -0.03em;
}

.about-detail-card strong {
    color: var(--text-main);
}

/* ================================
   NEWSLETTER SECTION
================================ */

.newsletter-section {
    padding: 150px 0;
    background-color: var(--bg-soft);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 72px;
    align-items: center;
}

.newsletter-content {
    max-width: 720px;
}

.newsletter-content h2 {
    margin-bottom: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.newsletter-content p {
    max-width: 560px;
    font-size: 1.08rem;
    line-height: 1.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 36px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
}

.newsletter-form input {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: var(--bg-main);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
}

.newsletter-form input::placeholder {
    color: var(--text-soft);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #D8BDB8;
}

/* ================================
   THOUGHT LEADERSHIP SECTION
================================ */

.thought-section {
    padding: 150px 0;
    background-color: var(--white);
}

.thought-header {
    max-width: 760px;
    margin-bottom: 70px;
}

.thought-header h2 {
    margin-bottom: 26px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.thought-header p {
    max-width: 640px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-soft);
}

.thought-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.thought-card {
    padding: 42px;
    border-radius: 30px;
    border: 1px solid var(--border);
    background-color: var(--bg-soft);
}

.featured-thought-card {
    background-color: var(--bg-main);
}

.thought-label {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
}

.thought-card h3 {
    margin-bottom: 22px;
    font-size: 2rem;
}

.thought-card p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.thought-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 4px;
}

/* ================================
   FOOTER SOCIAL ICONS
================================ */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-socials a {
    min-height: 40px;
    padding: 0 15px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background-color: var(--bg-main);

    text-decoration: none;
    color: var(--text-main);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: var(--bg-soft);
}

.footer-socials span {
    font-size: 0.9rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ================================
   PREMIUM POLISH
================================ */

.service-card,
.testimonial-card,
.thought-card,
.about-detail-card,
.newsletter-form {
    box-shadow: 0 18px 45px rgba(30, 29, 27, 0.035);
}

.service-card:hover,
.testimonial-card:hover,
.thought-card:hover {
    box-shadow: 0 26px 60px rgba(30, 29, 27, 0.06);
}

.section-tag {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
}

.hero-tag {
    font-size: 0.74rem;
    letter-spacing: 0.13em;
}

.hero-description {
    max-width: 520px;
}

.hero-image img {
    box-shadow: 0 30px 80px rgba(30, 29, 27, 0.08);
}