* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Inter", sans-serif;
background: #0f0f0f;
color: white;
}

/* NAV */
.nav {
position: fixed;
top: 0;
width: 100%;
padding: 20px 60px;
z-index: 100;
mix-blend-mode: difference;
}

.logo {
font-weight: 500;
letter-spacing: 2px;
}

/* HERO */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover;
}

.hero-overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.65);
}

.hero-content {
position: relative;
z-index: 2;
}

.hero h1 {
font-family: "Playfair Display";
font-size: 72px;
font-weight: 500;
}

.hero p {
opacity: 0.8;
margin-top: 10px;
}

.btn {
display: inline-block;
margin-top: 25px;
padding: 12px 28px;
background: white;
color: black;
text-decoration: none;
border-radius: 30px;
}

/* STORY */
.story {
padding: 120px 10%;
}

.container {
display: flex;
gap: 60px;
align-items: center;
}

.text {
flex: 1;
}

.text h2 {
font-family: "Playfair Display";
font-size: 40px;
margin-bottom: 20px;
}

.text p {
opacity: 0.8;
line-height: 1.6;
}

.image {
flex: 1;
height: 350px;
background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c') center/cover;
}

/* PROJECTS */
.projects {
padding: 120px 10%;
}

.projects h2 {
font-family: "Playfair Display";
font-size: 40px;
margin-bottom: 40px;
text-align: center;
}

.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.card {
height: 250px;
background: #222;
background-size: cover;
border-radius: 12px;
}

.card.large {
grid-column: span 2;
height: 400px;
}

/* EXPERIENCE */
.experience {
padding: 120px 10%;
text-align: center;
}

.experience h2 {
font-family: "Playfair Display";
font-size: 40px;
margin-bottom: 30px;
}

.points {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
opacity: 0.8;
}

/* CTA */
.cta {
padding: 120px 10%;
text-align: center;
background: #c8a96a;
color: black;
}

.cta a {
display: inline-block;
margin-top: 20px;
padding: 12px 28px;
background: black;
color: white;
text-decoration: none;
border-radius: 30px;
}

/* FOOTER */
footer {
padding: 30px;
text-align: center;
opacity: 0.6;
}

/* MOBILE */
@media(max-width:768px){

.hero h1{
font-size:64px;
line-height:1;
}

.hero p{
font-size:20px;
padding:0 20px;
line-height:1.5;
}

nav{
gap:16px !important;
}

nav a{
font-size:14px !important;
}

.btn{
padding:16px 32px;
font-size:18px;
}

@media(max-width:768px){

.hero h1{
font-size:64px;
line-height:1;
}

.hero p{
font-size:20px;
padding:0 20px;
line-height:1.5;
}

nav{
gap:16px !important;
}

nav a{
font-size:14px !important;
}

.btn{
padding:16px 32px;
font-size:18px;
}

@media(max-width:768px){

.hero h1{
font-size:64px;
line-height:1;
}

.hero p{
font-size:20px;
padding:0 20px;
line-height:1.5;
}

nav{
gap:16px !important;
}

nav a{
font-size:14px !important;
}

.btn{
padding:16px 32px;
font-size:18px;
}

@media(max-width:768px){

.hero h1{
font-size:64px;
line-height:1;
}

.hero p{
font-size:20px;
padding:0 20px;
line-height:1.5;
}

nav{
gap:16px !important;
}

nav a{
font-size:14px !important;
}

.btn{
padding:16px 32px;
font-size:18px;
}

@media(max-width:768px){

.hero h1{
font-size:64px;
line-height:1;
}

.hero p{
font-size:20px;
padding:0 20px;
line-height:1.5;
}

nav{
gap:16px !important;
}

nav a{
font-size:14px !important;
}

.btn{
padding:16px 32px;
font-size:18px;
}

}
.grid {
grid-template-columns: 1fr;
}
.hero h1 {
font-size: 40px;
}
.points {
grid-template-columns: 1fr;
}
}
.projects {
padding: 120px 10%;
text-align: center;
}

.projects h2 {
font-family: "Playfair Display";
font-size: 40px;
margin-bottom: 50px;
}

.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

.card {
height: 280px;
background-size: cover;
background-position: center;
border-radius: 14px;
position: relative;
overflow: hidden;
transition: 0.4s ease;
}

.card.large {
grid-column: span 2;
height: 420px;
}

.card:hover {
transform: scale(1.02);
}

.label {
position: absolute;
bottom: 20px;
left: 20px;
background: rgba(0,0,0,0.5);
padding: 8px 14px;
border-radius: 20px;
font-size: 14px;
}
<section class="cta">
  <h2>Let’s Design Your Space</h2>
  <p>Premium interior design consultations by appointment only.</p>

  <a href="https://wa.me/918090391098">Start on WhatsApp</a>
</section>
<section class="cta">
  <h2>Let’s Design Your Space</h2>
  <p>Premium interior design consultations by appointment only.</p>

  <a href="https://wa.me/91XXXXXXXXXX">Start on WhatsApp</a>
</section>
.contact-section{
padding:120px 20px;
text-align:center;
background:#111;
color:#f5f5f5;
}

.contact-section h2{
font-size:48px;
margin-bottom:20px;
font-family:'Playfair Display', serif;
font-weight:500;
}

.contact-section p{
max-width:700px;
margin:auto;
line-height:1.8;
opacity:0.8;
font-size:16px;
}

.contact-info{
margin-top:40px;
display:flex;
flex-direction:column;
gap:18px;
}

.contact-info a,
.contact-info span{
color:#d6c2a8;
text-decoration:none;
font-size:15px;
letter-spacing:1px;
transition:0.3s;
}

.contact-info a:hover{
opacity:0.7;
}
img{
transition:0.4s ease;
}

img:hover{
transform:scale(1.03);
opacity:0.95;
}