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

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Montserrat', sans-serif;
    background-color: #070304;   /* back to original */
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1600px; /* slightly wider so headline fits one line */
    margin: auto;
}

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

/* =========================
   TOP LOGO (SPANNING WIDTH)
========================= */

.top-banner{
    width:100%;
    text-align:center;
    margin-bottom:40px;
}

.top-banner img{
    width:100%;
    max-width:1100px;
    height:auto;
    display:block;
    margin:auto;
}
/* =========================
   FULL WIDTH HEADLINE
========================= */
.main-headline {
    text-shadow: 0 0 20px rgba(216, 163, 157, 0.25);
    text-align: center;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: 1px;
    margin: 60px auto 80px auto;
    max-width: 1100px;

   background: linear-gradient(90deg, #9f5c4f, #c07a6a, #dca59a);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* =========================
   CONTENT ROW (LEFT + RIGHT)
========================= */

.content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */

.left-column {
    flex: 1;
    max-width: 720px;
}

.subtext {
    font-size: 25px;     /* up 1px from 24 */
    line-height: 1.9;
    margin-bottom: 45px;
    color: #ededed;
}

/* SERVICES GRID */

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.card {
    background-color: #141822;   /* deep navy */
    padding: 30px;
    border-radius: 12px;

    border: 1px solid rgba(216, 163, 157, 0.35); /* soft rose edge */
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #d8a39d;
    box-shadow: 0 0 18px rgba(216, 163, 157, 0.25);
    transform: translateY(-4px);
}

.card h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
}

.card-link{
text-decoration:none;
color:inherit;
flex:1;
}

.card-link:hover .card{
border:1px solid #e0a899;
box-shadow:0 0 12px rgba(224,168,153,.4);
transition:.3s;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0 25px 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 42px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;

    color: #070304;
    background: linear-gradient(90deg, #c07a6a, #dca59a);
    border-radius: 50px;

    box-shadow: 0 8px 25px rgba(216,163,157,0.25);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(216,163,157,0.4);
}

/* CONTACT */

.contact {
    font-size: 23px;
    font-weight: 600;
    margin-top: 20px;
    text-align: left;
    padding: 0;
}

.contact p {
    color: #e3b2a6;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.label {
    text-transform: uppercase;
    letter-spacing: 1px;

    background: linear-gradient(90deg, #9f5c4f, #c07a6a, #dca59a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact a{
color:#e3b2a6;
text-decoration:none;
}

.contact a:visited{
color:#e3b2a6;
}

.contact a:hover{
color:#dca59a;
}

/* Right column */

.right-column{
flex:1;
display:flex;
}

/* Video wrapper */

.video-wrapper{
width:100%;
}

.video-wrapper iframe{
width:100%;
height:360px;
border-radius:8px;
border:0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

.main-headline{
line-height:1.25;
letter-spacing:.5px;
padding:0 24px;
}

.content-row{
flex-direction:column;
align-items:center;
}

.left-column{
max-width:100%;
}

.services{
flex-direction:column;
}

.video-wrapper{
margin-top:40px;
width:100%;
max-width:420px;
}

.video-wrapper iframe{
height:250px;
}

}
