* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #2C2416;
    background: #FAF3E0;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.attribute {
    color:#777573;
    font-size:10px;
    margin-left:4px;

}
.attribute a {
    text-decoration:none;
    color:#777573;
}
/* ─── Navigation ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 243, 224, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 rgba(196, 98, 45, 0.15);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: #FAF3E0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
}

nav.scrolled .logo {
    color: #C4622D;
    text-shadow: none;
}

.logo em {
    font-style: italic;
}

nav ul {
    display: none;
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    nav ul {
        display: flex;
    }
}

nav a {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FAF3E0;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transition: color 0.15s ease;
}

nav.scrolled a {
    color: #4A5240;
    text-shadow: none;
}

nav a:hover {
    color: #C4622D;
}

.btn-facebook {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: #C4622D;
    color: #FAF3E0;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

@media (min-width: 768px) {
    .btn-facebook {
        display: inline-flex;
    }
}

.btn-facebook:hover {
    background: #A84D23;
}

/* ─── Hero Section ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663753145320/6h4vK3JVt8SETDTvwLZHzG/hero_spain_coast-VYgv2ZTk3MzRScFK6Bn9ZC.webp');
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.04);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44, 36, 22, 0.72) 0%, rgba(44, 36, 22, 0.35) 55%, rgba(44, 36, 22, 0.1) 100%);
    z-index: 1;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(250, 243, 224, 1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
}

.hero-content {
    max-width: 620px;
}

.section-label {
    color: #E8845A;
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FAF3E0;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 em {
    font-style: italic;
}

.hero-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(250, 243, 224, 0.9);
    margin-bottom: 2.5rem;
    max-width: 480px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.btn-primary {
    background: #C4622D;
    color: #FAF3E0;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-primary:hover {
    background: #A84D23;
}

.btn-secondary {
    background: transparent;
    color: #FAF3E0;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(250, 243, 224, 0.5);
    border-radius: 2px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.16s ease;
}

.btn-secondary:hover {
    border-color: #FAF3E0;
    background: rgba(250, 243, 224, 0.1);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #E8845A;
    line-height: 1;
}

.stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(250, 243, 224, 0.7);
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Brand Story Section ─── */
.brand-story {
    background: #FAF3E0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: 3rem;
    right: 4rem;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(196, 98, 45, 0.15);
    border-radius: 4px;
    transform: rotate(8deg);
    opacity: 0.6;
    pointer-events: none;
}

.brand-story .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .brand-story .container {
        grid-template-columns: 1fr 1fr;
    }
}

.brand-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2C2416;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.brand-divider {
    width: 48px;
    height: 3px;
    background: #C4622D;
    margin-bottom: 1.75rem;
    border-radius: 2px;
}

.brand-story p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6B7A5E;
    margin-bottom: 1.5rem;
}

.brand-quote {
    border-left: 4px solid #C4622D;
    padding-left: 1.5rem;
    font-style: italic;
    color: #C4622D;
    margin: 2rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.photo-collage {
    position: relative;
    height: 420px;
    margin-top: 2rem;
}

.photo-card {
    position: absolute;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 36, 22, 0.18);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-card:nth-child(1) {
    top: 0;
    left: 0;
    width: 45%;
    aspect-ratio: 3/2;
    transform: rotate(-3deg);
}

.photo-card:nth-child(2) {
    bottom: 0;
    right: 0;
    width: 58%;
    aspect-ratio: 4/3;
    transform: rotate(1.5deg);
}

.stamp-label {
    position: absolute;
    bottom: 30%;
    left: -1rem;
    background: #C4622D;
    color: #FAF3E0;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    white-space: nowrap;
}

/* ─── Featured Content Section ─── */
.featured-content {
    background: #F0E6CC;
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #2C2416;
    margin-bottom: 1rem;
}

.section-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #6B7A5E;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.card {
    background: #FEFCF7;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 36, 22, 0.08);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover .card-image img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #C4622D;
    color: #FAF3E0;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.card-body {
    padding: 1.5rem;
}

.card-subtitle {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C4622D;
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C2416;
    margin-bottom: 0.75rem;
}

.card-description {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #6B7A5E;
}

/* ─── Social Proof Section ─── */
.social-proof {
    background: #FAF3E0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(196, 98, 45, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 144, 217, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.testimonial {
    background: #FEFCF7;
    border-radius: 3px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(44, 36, 22, 0.07);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(196, 98, 45, 0.12);
    font-weight: 700;
    user-select: none;
}

.stars {
    margin-bottom: 0.75rem;
    color: #C4622D;
    font-size: 0.85rem;
}

.testimonial-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: #4A5240;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #C4622D;
    color: #FAF3E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.author-name {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #2C2416;
}

.author-location {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #6B7A5E;
}

.author-likes {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: #C4622D;
    font-weight: 700;
}

/* ─── Contact Section ─── */
.contact {
    background: #4A5240;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663753145320/6h4vK3JVt8SETDTvwLZHzG/spain_mountains_lake-7eTe2efh6SrbKn9rTwHdfw.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact .container {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #FAF3E0;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.contact-info p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 243, 224, 0.8);
    margin-bottom: 2.5rem;
}

.contact-info .section-label {
    color: #E8845A;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(196, 98, 45, 0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 243, 224, 0.5);
    margin-bottom: 0.15rem;
}

.contact-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #E8845A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #FAF3E0;
}

.contact-form {
    background: #FAF3E0;
    border-radius: 3px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #2C2416;
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C4622D;
    display: block;
    margin-bottom: 0.4rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #2C2416;
    background: #FEFCF7;
    border: 1px solid rgba(196, 98, 45, 0.25);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.15s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #C4622D;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: #C4622D;
    color: #FAF3E0;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-submit:hover {
    background: #A84D23;
}

/* ─── Footer ─── */
footer {
    background: #2C2416;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FAF3E0;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    line-height: 1.75;
    color: rgba(250, 243, 224, 0.55);
    max-width: 220px;
}

.footer-section h4 {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C4622D;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: rgba(250, 243, 224, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #E8845A;
}

.footer-bottom {
    border-top: 1px solid rgba(196, 98, 45, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    color: rgba(250, 243, 224, 0.5);
}

