{
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Inter', sans-serif;
background: #F4EEE4;
color: #4A3725;
}

.topbar {
background: linear-gradient(180deg,#FFFFFF 0%, #F9F4EA 100%);
padding: 28px 40px 22px 40px;
border-bottom: 1px solid rgba(198,167,94,0.25);
}

.topbar-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 28px;
}

.logo {
height: 70px;
}

.topbar-text {
display: flex;
flex-direction: column;
}

.motto {
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
color: #B8860B;
margin-bottom: 6px;
font-weight: 500;
}

.line2 {
font-size: 14px;
color: #6B5844;
margin-bottom: 12px;
}

.brand-text {
font-family: 'Playfair Display', serif;
font-size: 26px;
color: #4A3725;
font-weight: 600;
line-height: 1.2;
}

.brand-text span {
display: block;
font-size: 15px;
letter-spacing: 2px;
color: #B8860B;
margin-top: 4px;
}


.hero {
position: relative;
width: 100%;
height: 420px;
overflow: hidden;
}

.hero img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 35%;
}

.hero::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(244,238,228,0) 0%,
rgba(244,238,228,0.15) 50%,
rgba(244,238,228,0.8) 100%
);
}

.container {
max-width: 860px;
margin: -120px auto 80px auto;
padding: 60px;
background: white;
border-radius: 18px;
box-shadow: 0 30px 80px rgba(74,55,37,0.15);
position: relative;
z-index: 2;
}

@media(max-width:768px){
.hero{
height:260px;
}
.container {
    margin: -60px 16px 60px 16px;
    padding: 30px 20px;
}
}

.container::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 6px;
width: 100%;
background: linear-gradient(90deg,#C6A75E,#B8860B);
border-top-left-radius: 18px;
border-top-right-radius: 18px;
}

h1 {
font-family: 'Playfair Display', serif;
font-size: 42px;
text-align: center;
margin-bottom: 8px;
}

.sub {
text-align: center;
color: #B8860B;
font-weight: 500;
letter-spacing: 1px;
margin-bottom: 40px;
}

.card {
background: #FBF7EF;
border: 1px solid rgba(198,167,94,0.3);
padding: 25px;
border-radius: 12px;
margin-bottom: 40px;
line-height: 1.6;
}

.premium-form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}

.field {
display: flex;
flex-direction: column;
}

.field.full {
grid-column: span 2;
}

.field label {
font-size: 13px;
margin-bottom: 6px;
color: #6B5844;
font-weight: 500;
}

.field input,
.field textarea {
padding: 14px 16px;
border-radius: 10px;
border: 1px solid #E5D7C1;
font-size: 15px;
background: #FFFFFF;
transition: 0.3s;
}

.field textarea {
min-height: 110px;
resize: vertical;
}

.field input:focus,
.field textarea:focus {
outline: none;
border-color: #C6A75E;
box-shadow: 0 0 0 3px rgba(198,167,94,0.15);
}

.field input,
.field textarea {
width: 100%;
max-width: 100%;
display: block;
padding: 14px 16px;
border-radius: 10px;
border: 1px solid #E5D7C1;
font-size: 15px;
background: #FFFFFF;
}

.quantity-wrap {
grid-column: span 2;
display: flex;
justify-content: center;
align-items: center;
gap: 18px;
margin-top: 10px;
}

.quantity-wrap button {
width: 44px;
height: 44px;
border-radius: 50%;
border: none;
background: #C6A75E;
color: white;
font-size: 20px;
cursor: pointer;
}

.quantity-wrap input {
width: 80px;
text-align: center;
font-size: 18px;
border-radius: 8px;
}

.total {
grid-column: span 2;
text-align: center;
font-size: 20px;
margin-top: 8px;
}

.gold-btn {
grid-column: span 2;
}

Mobile fix:

@media(max-width:768px){
.premium-form {
    display: block;
}

.field {
    width: 100%;
    margin-bottom: 18px;
}

.offer-btn {
    width: 100%;
}
}


@media(max-width:768px){
.topbar-inner{
flex-direction: column;
text-align: center;
}
.logo{
height:60px;
}
.brand-text{
font-size:22px;
}
}

.logo {
height: 55px;
}

.brand-text {
font-family: 'Playfair Display', serif;
font-size: 18px;
color: #4A3725;
line-height: 1.3;
}

.seva-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
}

.seva-left h2 {
font-family: 'Playfair Display', serif;
font-size: 38px;
margin: 0 0 6px 0;
}

.seva-left .sub {
color: #B8860B;
margin-bottom: 20px;
}

.price-ticket {
position: relative;
display: inline-block;
background: linear-gradient(135deg,#C6A75E,#B8860B);
color: white;
padding: 20px 28px;
border-radius: 8px;
min-width: 200px;
box-shadow: 0 10px 30px rgba(198,167,94,0.35);
}

.price-ticket::before,
.price-ticket::after {
content: "";
position: absolute;
width: 16px;
height: 16px;
background: #ffffff;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
}

.price-ticket::before {
left: -8px;
}

.price-ticket::after {
right: -8px;
}

.ticket-label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.85;
}

.ticket-price {
font-size: 26px;
font-weight: 600;
margin-top: 4px;
}

.ticket-small {
font-size: 13px;
opacity: 0.85;
}

.seva-date-badge {
background: #4A3725;
color: white;
padding: 20px;
border-radius: 14px;
text-align: center;
min-width: 110px;
box-shadow: 0 12px 30px rgba(74,55,37,0.3);
}

.date-day {
font-size: 30px;
font-weight: 600;
}

.date-month {
font-size: 14px;
letter-spacing: 2px;
margin-top: 4px;
}

.date-year {
font-size: 12px;
margin-top: 4px;
opacity: 0.8;
}

@media(max-width:768px){
.seva-info{
flex-direction: column;
gap: 25px;
text-align: center;
}
}

.seva-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.seva-title h1 {
font-family: 'Playfair Display', serif;
font-size: 40px;
margin: 0;
}

.seva-title .sub {
color: #B8860B;
margin-top: 6px;
}

.seva-meta {
display: flex;
align-items: center;
justify-content: center;
gap: 22px;
flex-wrap: nowrap;
}
.price-ticket {
position: relative;
background: linear-gradient(135deg,#C6A75E,#B8860B);
color: white;
padding: 18px 24px;
border-radius: 6px;
min-width: 150px;
text-align: left;
box-shadow: 0 8px 20px rgba(198,167,94,0.3);
}

.price-ticket::before,
.price-ticket::after {
content: "";
position: absolute;
width: 14px;
height: 14px;
background: #F4EEE4;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
}

.price-ticket::before { left: -7px; }
.price-ticket::after { right: -7px; }

.ticket-label {
font-size: 11px;
letter-spacing: 1px;
text-transform: uppercase;
opacity: 0.85;
}

.ticket-price {
font-size: 24px;
font-weight: 600;
margin-top: 4px;
}

.ticket-small {
font-size: 12px;
opacity: 0.85;
}

.date-badge {
background: #4A3725;
color: white;
padding: 18px 22px;
border-radius: 10px;
text-align: center;
min-width: 90px;
box-shadow: 0 10px 25px rgba(74,55,37,0.3);
}

.date-day {
font-size: 26px;
font-weight: 600;
}

.date-month {
font-size: 13px;
letter-spacing: 2px;
margin-top: 2px;
}

.date-year {
font-size: 11px;
margin-top: 3px;
opacity: 0.85;
}

.seva-note {
margin-top: 18px;
color: #5C4A38;
font-size: 15px;
}


@media(max-width:768px){
.seva-header{
flex-direction: column;
align-items: center;
text-align: center;
gap: 18px;
}

.seva-meta{
    flex-direction: column;
}

}


.offer-btn {
grid-column: span 2;
margin-top: 30px;
padding: 18px 20px;
border: none;
border-radius: 50px;
background: linear-gradient(135deg,#C6A75E,#B8860B);
color: white;
font-size: 16px;
font-weight: 600;
letter-spacing: 1px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: 0.3s ease;
box-shadow: 0 15px 35px rgba(198,167,94,0.35);
}

.offer-btn::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
120deg,
rgba(255,255,255,0.3),
rgba(255,255,255,0)
);
transition: 0.5s;
}

.offer-btn:hover::before {
left: 100%;
}

.offer-btn:hover {
transform: translateY(-3px);
box-shadow: 0 20px 45px rgba(198,167,94,0.5);
}

.offer-btn:active {
transform: translateY(-1px);
}


@media(max-width:768px){
.offer-btn{
grid-column: span 1;
}
}


.section-title {
font-size: 18px;
font-weight: 600;
margin-top: 30px;
margin-bottom: 15px;
color: #4A3725;
}

.history-link-wrap{
text-align:center;
margin-top:20px;
}

.history-link{
font-size:0.9rem;
color:#8b6b2e;
text-decoration:none;
border-bottom:1px solid rgba(139,107,46,0.3);
padding-bottom:3px;
}