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

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    line-height:1.6;

}

/* HERO */

.hero{

    background:#EAD796;
    text-align:center;
    padding:10px 5px 50px;

}

.logo-area{

    position:absolute;
    top:0;
    left:0;

}

.logo-area img{

    width:120px;
    height:120px;
    object-fit:contain;

}


.hero h1 {
  margin-top:5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 500;
  color: #111;
}

.hero .subtitle {
  font-size: 18px;
  margin-top: 7px;
  color: #444;
}
/* CONTENT */

.content{

    padding:50px 25px;

}

section{

    max-width:700px;

    margin:auto;

    background:#FDFBF5;

    padding:40px;

    border-radius:12px;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

}

section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  margin-bottom: 18px;
  color: #222;
}

section p {
  font-size: 15px;
  margin-bottom: 30px;
  color: #555;
}


.contact-box{

    background:#FFF9E8;

    border-left:5px solid #D4AF37;

    border-radius:10px;

    padding:24px;

    margin-bottom:35px;

}

.contact-box h3{

    margin-bottom:18px;

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:16px;

    margin-bottom:20px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.icon{

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#D4AF37;
    color:#fff;

    font-size:18px;

    flex-shrink:0;

}
.contact-item strong{

    display:block;

    margin-bottom:0px;
    font-size:14px;
    color:#222;

}

.contact-item a{

    color:#917400;

    text-decoration:none;
    font-size:16px;
    font-weight:500;

}

.contact-item a:hover{

    text-decoration:underline;

}

hr{

    margin:30px 0;

    border:none;

    border-top:1px solid #ddd;

}

label{

    display:block;

    margin:18px 0 8px;

    font-weight:600;

}

input,
textarea{

    width:100%;

    padding:12px 16px;

    border:1px solid #d6d6d6;

    border-radius:8px;

    font-size:16px;

    transition:.3s;

}

textarea{

    resize:vertical;

    min-height:140px;

}

input:focus,
textarea:focus{

    outline:none;

    border-color:#D4AF37;

    background:#f4f4f4ca;

    box-shadow:0 0 6px rgba(212,175,55,.35);

}

input:not(:placeholder-shown),
textarea:not(:placeholder-shown){

    background:#f4f4f4ca;

}



button{

    width:100%;

    margin-top:30px;

    padding:15px;

    border:none;

    border-radius:8px;

    background:#D4AF37;

    color:#fff;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

button:hover {
  background: #917400;
  transform: translateY(-2px);
}

.success-message{

    display:none;

    max-width:360px;

    margin:30px auto;

    text-align:center;

    padding:28px;

    background:#fff;

    border:1px solid green;

    border-radius:12px;

    color:green;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.success-message::before{

    content:"✓";

    display:flex;

    justify-content:center;

    align-items:center;

    width:60px;

    height:60px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#D4AF37;

    color:#fff;

    font-size:28px;

    font-weight:bold;

}

.links{

    margin-top:45px;

}

.links h3{
   
    font-family:'Cormorant Garamond',serif;

    font-size:24px;

    margin-bottom:20px;

}

.link-card{

    display:block;

    padding:18px 20px;

    margin-bottom:15px;

    background:#FFF9E8;

    border:1px solid #E6D8A8;

    border-radius:10px;

    text-decoration:none;

    transition:.25s;

}

.link-card:hover{

    background:#F7EFCB;

    transform:translateY(-2px);

    box-shadow:0 6px 14px rgba(0,0,0,.08);

}

.link-card strong{

    display:block;

    font-size:17px;

    color:#222;

    margin-bottom:6px;

}

.link-card span{

    color: #555;
    font-size:12px;

    

}


.links a{

    display:block;

    margin-bottom:12px;

    color:#917400;

    text-decoration:none;

    font-weight:600;

}

.links a:hover{

    text-decoration:underline;

}

/* FOOTER */

.footer{

    margin-top:70px;

    background:#F5F0DA;

    text-align:center;

    padding:30px 20px;

    border-top:1px solid #e5e5e5;

}

.footer p{

    margin-bottom:10px;

    color:#444;

}

.footer p:last-child{

    margin-bottom:0;

}

/* ===========================
   Responsive Design
=========================== */

@media (max-width: 768px) {

    /* Hero */

    .hero{
        padding:20px 20px 40px;
    }

    .logo-area{
        position:static;
        text-align:center;
        margin-bottom:10px;
    }

    .logo-area img{
        width:90px;
        height:90px;
    }

    .hero h1{
        font-size:42px;
        line-height:1.2;
        margin-top:0;
    }

    .hero .subtitle{
        font-size:16px;
        padding:0 10px;
    }

    /* Content */

    .content{
        padding:30px 15px;
    }

    section{
        padding:25px 20px;
        border-radius:10px;
    }

    section h2{
        font-size:28px;
    }

    section p{
        font-size:15px;
    }

    /* Contact */

    .contact-box{
        padding:18px;
    }

    .contact-box h3{
        font-size:24px;
    }

    .contact-item{
        gap:12px;
    }

    .icon{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .contact-item strong{
        font-size:13px;
    }

    .contact-item a{
        font-size:15px;
        word-break:break-word;
    }

    /* Form */

    label{
        font-size:15px;
    }

    input,
    textarea{
        font-size:15px;
        padding:12px 14px;
    }

    textarea{
        min-height:120px;
    }

    button{
        padding:14px;
        font-size:16px;
    }

    /* Success message */

    .success-message{
        width:100%;
        max-width:100%;
        padding:24px 18px;
        font-size:15px;
    }

    .success-message::before{
        width:54px;
        height:54px;
        font-size:24px;
    }

    /* Helpful links */

    .links{
        margin-top:35px;
    }

    .links h3{
        font-size:22px;
    }

    .link-card{
        padding:16px;
    }

    .link-card strong{
        font-size:16px;
    }

    .link-card span{
        font-size:13px;
        line-height:1.5;
    }

    /* Footer */

    .footer{
        margin-top:50px;
        padding:25px 15px;
    }

    .footer p{
        font-size:14px;
    }

}


/* Extra Small Devices */

@media (max-width:480px){

    .hero h1{
        font-size:34px;
    }

    .hero .subtitle{
        font-size:15px;
    }

    section{
        padding:20px 16px;
    }

    section h2{
        font-size:24px;
    }

    .contact-box h3{
        font-size:22px;
    }

    .contact-item{
        align-items:center;
    }

    .icon{
        width:34px;
        height:34px;
        font-size:15px;
    }

    button{
        font-size:15px;
    }

}