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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #2F5F5F 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    color: white;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('images/guild-facade-night.png') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="brick" patternUnits="userSpaceOnUse" width="40" height="20"><rect width="40" height="20" fill="none"/><rect width="18" height="8" x="1" y="1" fill="%23B85450" opacity="0.1"/><rect width="18" height="8" x="21" y="1" fill="%23B85450" opacity="0.1"/><rect width="18" height="8" x="1" y="11" fill="%23A0453F" opacity="0.1"/><rect width="18" height="8" x="21" y="11" fill="%23A0453F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23brick)"/></svg>') repeat;
    opacity: 0.2;
    pointer-events: none;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.location {
    font-size: 1rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.content {
    background: #fefefe;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 2rem 0;
    border: 4px solid #B85450;
    position: relative;
}

.content::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #B85450 0%, #D4A574 50%, #2F5F5F 100%);
    border-radius: 16px;
    z-index: -1;
}

.letter-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 3rem;
    border-radius: 8px;
    border-left: 8px solid #B85450;
    box-shadow: 0 8px 25px rgba(184, 84, 80, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.letter-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 100"><defs><pattern id="corrugated" patternUnits="userSpaceOnUse" width="20" height="10"><rect width="20" height="10" fill="none"/><path d="M0 0l20 0" stroke="%23B85450" stroke-width="0.5" opacity="0.2"/><path d="M0 5l20 0" stroke="%23B85450" stroke-width="0.3" opacity="0.1"/><path d="M0 10l20 0" stroke="%23B85450" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="20" height="100" fill="url(%23corrugated)"/></svg>') repeat-y;
    opacity: 0.3;
    pointer-events: none;
}

.letter-section h2 {
    font-size: 2.2rem;
    color: #B85450;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(184, 84, 80, 0.1);
}

.letter-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.letter-content p {
    margin-bottom: 1.5rem;
}

.signature {
    margin-top: 2rem;
    font-style: italic;
    text-align: right;
    color: #2F5F5F;
    font-weight: 500;
}

.image-section {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(47, 95, 95, 0.3);
    transition: transform 0.3s ease;
    border: 3px solid #D4A574;
    display: block;
    margin: 0 auto;
}

/* Wide facade image styling */
.hero-image.wide-facade {
    max-width: 900px;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(47, 95, 95, 0.4);
}

.hero-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(47, 95, 95, 0.4);
}

.hero-image.wide-facade:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(47, 95, 95, 0.5);
}

.text-section {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #2F5F5F 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 3px solid #D4A574;
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="brewery" patternUnits="userSpaceOnUse" width="60" height="60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="2" fill="%23D4A574" opacity="0.2"/><circle cx="15" cy="15" r="1" fill="%23D4A574" opacity="0.1"/><circle cx="45" cy="45" r="1" fill="%23D4A574" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23brewery)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.text-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.text-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.email-form input,
.email-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: border-color 0.3s ease, background 0.3s ease;
    font-family: inherit;
    min-height: 44px;
    box-sizing: border-box;
}

.email-form input::placeholder,
.email-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.email-form input:focus,
.email-form textarea:focus {
    outline: none;
    border-color: #D4A574;
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.3);
}

.email-form textarea {
    resize: vertical;
    min-height: 100px;
}

.email-form button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #B85450 0%, #A0453F 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.email-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 84, 80, 0.4);
    border-color: #D4A574;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
}

.secondary-image {
    text-align: center;
}

.feature-image {
    width: 100%;
    max-width: 500px;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(184, 84, 80, 0.25);
    transition: transform 0.3s ease;
    border: 3px solid #2F5F5F;
    display: block;
    margin: 0 auto;
}

/* Wide full image styling */
.feature-image.wide-full {
    max-width: 800px;
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(184, 84, 80, 0.35);
}

.feature-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(184, 84, 80, 0.35);
}

.feature-image.wide-full:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(184, 84, 80, 0.45);
}

/* Links Section */
.links-section {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
    border: 3px solid #2F5F5F;
}

.links-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.links-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.links-content p {
    margin: 0;
    font-size: 1.1rem;
    color: white;
}

.links-content a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.links-content a:hover {
    color: #2F5F5F;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}


/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 3px solid #B85450;
    box-shadow: 0 15px 35px rgba(184, 84, 80, 0.15);
}

.faq-section h2 {
    text-align: center;
    color: #B85450;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(184, 84, 80, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(184, 84, 80, 0.1);
    border: 2px solid #D4A574;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(184, 84, 80, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, #2F5F5F 0%, #1a1a1a 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #3a7070 0%, #2a2a2a 100%);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #D4A574;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.open .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    background: rgba(47, 95, 95, 0.2);
    border-radius: 8px;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
        background-attachment: scroll;
        min-height: 50vh;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-shadow: 0 4px 8px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,1);
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .location {
        font-size: 0.9rem;
    }
    
    .content {
        padding: 1.5rem;
        margin: 1rem 0;
        border-width: 2px;
    }
    
    .letter-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-left-width: 4px;
    }
    
    .text-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-width: 2px;
    }
    
    .text-section h2,
    .letter-section h2 {
        font-size: 1.8rem;
    }
    
    .letter-content {
        font-size: 1rem;
    }
    
    .text-section p {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 250px;
        max-width: 100%;
        border-width: 2px;
    }
    
    .hero-image.wide-facade {
        max-width: 100%;
        aspect-ratio: 16/10;
        height: auto;
        min-height: 200px;
    }
    
    .feature-image {
        height: 200px;
        max-width: 100%;
        border-width: 2px;
    }
    
    .feature-image.wide-full {
        max-width: 100%;
        aspect-ratio: 16/10;
        height: auto;
        min-height: 180px;
    }
    
    .email-form {
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .email-form input,
    .email-form textarea {
        padding: 0.875rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .email-form button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .image-section,
    .secondary-image {
        margin-bottom: 2rem;
    }
    
    .signature {
        font-size: 0.9rem;
    }
    
    /* Mobile styles for new sections */
    .links-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-width: 2px;
    }
    
    .links-section h2 {
        font-size: 1.6rem;
    }
    
    .links-content {
        gap: 0.75rem;
    }
    
    .links-content p {
        font-size: 1rem;
    }
    
    
    .faq-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-width: 2px;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-item {
        border-width: 1px;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 0.5rem;
    }
    
    .faq-toggle {
        font-size: 1.3rem;
        min-width: 25px;
    }
    
    .faq-item.open .faq-answer {
        padding: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .footer {
        padding: 1.5rem 0;
        margin-top: 1rem;
        font-size: 0.8rem;
    }
}